Skip to main content

Practical List - XII CS and XII IP



CLASS XII COMPUTER SCIENCE PRACTICAL


1. Write a program to sum first N terms of the following Series

1 + X/2! + X2/4! + X3/6! +X4/8! + ………………………

2. To display the list of students who have failed in more than one subject. (using structure)

3. To find largest and smallest element in an array.

4. Calculation of area of triangle, rectangle and circle using function overloading concept.

5. In a class Flight, calculate the quantity of fuel using class and object concept.

6. Menu based program to display information of student according to roll no and also the

information of student obtaining the highest marks.

7. Calculation of price of a material in a class Clothing with constructor.

8. Implementation of hierarchical inheritance using a single base class and two derived class.

9. To count the no. of alphabets, digits, spaces, other characters and no. of lines in a text file.

10. Modifying a record in a binary file “COLONY.DAT” using structure concept.

11.Add, delete, modify, search and display records in a binary file “STUDENT.DAT” using class and object concept.

12. Calculate and display the row-sum and column-sum of a 2-D dynamic array using pointer.

13. A menu based program to insert and delete elements in a 1-D array of integers.

14. Searching of an element in an integer array using binary search.

15. Menu based program for sorting of elements in a 1-D array using selection sort or bubble sort or insertion sort.

16. Array implementation of stack.

17. Linked list implementation of stack.

18. Array implementation of queue.

19. Linked list implementation of queue.

20. Array implementation of circular queue.

21. Designing of simple calculator (+, *, /, ^, √) using class and object function.

22. SQL commands to create TABLE-EMP.



Also you can download the list of practicals.

XII CS Practical List (pdf file)



CLASS XII INFORMATICS PRACTICES PRACTICAL


1.To display a message using GUI Dialog.

OR

To display a message for eligibility to vote or not.

2. To concatenate two sub strings.

3. To find IP Address of a system.

4. To perform simple arithmetic operations.

5. To display grades in a GUI application

6. Use of radiobutton in a real life application.

7 Use of radiobutton and checkbox in a GUI application.

8. Use of string library methods.

9. Use of Java’s math methods and user defined methods.

10. Change of foreground and background color of label.

11. Multiplication table of a number in using jList.

12. Displaying all records of a database table in a GUI application based on certain criteria.

13. To perform INSERT, UPDATE, DELETE operations on a database using a GUI application.

14. Creation of webpage using basic HTML elements.

15. Creating form HTML Tags

16. Mysql Commands (Teacher - Table) – DML

17. Mysql Commands – DDL

18. Creating an application using XML

19. IT Application (Cross N Knot Game)

20. IT Application (Salary Calculator)



XII IP Practical List (pdf file)

Popular posts from this blog

Project Work for Class XII Informatics Practices (065) - CBSE 2020-2021

  Marks  allotted : 05 Marks A. PROJECT GUIDELINES The aim of the class project is to create tangible and useful IT application. The learner may identify a real-world problem by exploring the environment. e.g. Students can visit shops/business places, communities or other organizations in their localities and enquire about functioning of the organization, and how data are generated, stored, and managed. The learner can take data stored in csv or database file and analyze using Python libraries and generate appropriate charts to visualize. If an organization is maintaining data offline, then the learner should create a database using MySQL and store the data in tables. Data can be imported in Pandas for analysis and visualization. Learners can use Python libraries of their choice to develop software for their school or any other social good. Learners should avoid plagiarism and violation of copyright issues while working on projects. Any resources (data, image etc.) used in t...

Assignments - XII Computer Science

POINTERS ASSIGNMENT Assignment Date: 09/09/15 Submission Date: 14/09/15 Q1. What will be the output of the following program: int main() { int x [ ] = { 50, 40, 30, 20, 10}: int *p, *t; p = x; t = x + 1; cout << *p << “,” << *t++; return 0; } Q2. What will be the output of the program( Assume all necessary header files are included) void print (char * p ) { p = "Comp"; cout<<"value is "<<p<<endl; } int main( ) { char * x = "Class XII"; print(x); cout<<"new value is "<<x<<endl; return 0; } Q3. Identify errors on the following code segment, and underline the error. float c[ ] ={ 1.2,2.2,3.2,56.2}; float *k,*g; k=c; g=k+4; k=k*2; g=g/2; cout<<”*k=”<<*k<<”*g=”<<*g; Q4. Write the output of the following program. void print (char * p ) { p = "Comp"; cout<<"valu...