CBSE Class 11 Information Practices C++ Practical List Worksheet

Read and download free pdf of CBSE Class 11 Information Practices C++ Practical List Worksheet. Students and teachers of Class 11 Informatics Practices can get free printable Worksheets for Class 11 Informatics Practices C++ Practical List in PDF format prepared as per the latest syllabus and examination pattern in your schools. Class 11 students should practice questions and answers given here for Informatics Practices in Class 11 which will help them to improve your knowledge of all important chapters and its topics. Students should also download free pdf of Class 11 Informatics Practices Worksheets prepared by teachers as per the latest Informatics Practices books and syllabus issued this academic year and solve important problems with solutions on daily basis to get more score in school exams and tests

Worksheet for Class 11 Informatics Practices C++ Practical List

Class 11 Informatics Practices students should refer to the following printable worksheet in Pdf for C++ Practical List in Class 11. This test paper with questions and answers for Class 11 will be very useful for exams and help you to score good marks

Class 11 Informatics Practices Worksheet for C++ Practical List

CBSE Class 11 Information Practices - C++ Practical List. Students can download these worksheets and practice them. This will help them to get better marks in examinations. Also refer to other worksheets for the same chapter and other subjects too. Use them for better understanding of the subjects.

CLASS 11 COMPUTER SCIENCE (083) PRACTICAL LIST

1. Write a C++ Program to find area & circumference of circle.

2. Write a C++ Program to display ASCII character & vice versa.

3. Write a C++ Program to find greatest of three numbers.

4. Write a C++ Program that print Fibonacci series using do-while.

5. Write a C++ Program to check entered number is palindrome or not using

while loop.

6. Write a C++ Program that converts binary to decimal.

7. Write a C++ Program that print prime number up to n.

8. Write a C++ Program to print the following series up to n.

1

12

123

1234

12345

9. Write a C++ Program to find roots of quadratic equation using switch.

10. Write a C++ Program to find the sum of sine series

11. Write a C++ Program that converts lowercase letters in a given string to

corresponding uppercase letters & vice-versa.

12. Write a C++ Program that calculates the factorial of given number using

function, A function should return a value.

13. Write a C++ Program to swap two numbers using call by value method.

14. Write a C++ Program to convert distances in feet or inches using call by

reference method.

15. Write a C++ Program to find number of vowels, consonants, words,

spaces, digits & special symbols in a given line of text.

 

16. Write a menu driven program using function.

MAIN MENU

***************

1. Linear Search

2. Binary Search

3. Bubble Sort

4. Largest & Smallest Number.

5. Exit

Enter your choice:

17. Write a menu driven program using function.

MAIN MENU

***************

1.Add Matrix

2.Multiply Matrix

3.Transpose Matrix

4.Norm & Trace

5.Exit

Enter your choice:

18. Write a C++ Program to find sum of rows, columns, primary & secondary

diagonal elements of a given matrix.

19. Write a C++ Program to state information of 10 employees &to display of

an employee depending upon the employee no. given.

20. Write a C++ Program to illustrate passing structure by value.

 

10 Write a C++ Program to find the sum of sine series

#include<iostream.h>

#include<math.h>

void main()

{

int i = 2, n, s = 1, x, pwr = 1, dr;

float nr = 1, x1, sum;

clrscr();

cout<<"\n\n\t ENTER THE ANGLE...: ";

cin>> x;

x1 = 3.142 * (x / 180.0); //to convert angle in to radians.

sum = x1;

cout<<"\n\t ENTER THE NUMBER OF TERMS...: ";

cin>>n;

for(i=2;i <= n; i+=2)

{

pwr = pwr + 2;

dr = dr * pwr * (pwr - 1);

sum = sum + (nr / dr) * s;

s = s * (-1);

nr = nr * x1 * x1;

}

cout<<"\n\t THE SUM OF THE SINE SERIES IS..: "<<sum;

getch();

}

Please click the link below to download CBSE Class 11 Information Practices - C++ Practical List

Worksheet for CBSE Informatics Practices Class 11 C++ Practical List

We hope students liked the above worksheet for C++ Practical List designed as per the latest syllabus for Class 11 Informatics Practices released by CBSE. Students of Class 11 should download in Pdf format and practice the questions and solutions given in the above worksheet for Class 11 Informatics Practices on a daily basis. All the latest worksheets with answers have been developed for Informatics Practices by referring to the most important and regularly asked topics that the students should learn and practice to get better scores in their class tests and examinations. Expert teachers of studiestoday have referred to the NCERT book for Class 11 Informatics Practices to develop the Informatics Practices Class 11 worksheet. After solving the questions given in the worksheet which have been developed as per the latest course books also refer to the NCERT solutions for Class 11 Informatics Practices designed by our teachers. We have also provided a lot of MCQ questions for Class 11 Informatics Practices in the worksheet so that you can solve questions relating to all topics given in each chapter.

Where can I download latest CBSE Printable worksheets for Class 11 Informatics Practices C++ Practical List

You can download the CBSE Printable worksheets for Class 11 Informatics Practices C++ Practical List for latest session from StudiesToday.com

Is there any charge for the Printable worksheets for Class 11 Informatics Practices C++ Practical List

There is no charge for the Printable worksheets for Class 11 CBSE Informatics Practices C++ Practical List you can download everything free

Are there any websites that offer free test sheets for Class 11 Informatics Practices C++ Practical List

Yes, studiestoday.com provides all latest NCERT C++ Practical List Class 11 Informatics Practices test sheets with answers based on the latest books for the current academic session

What topics are covered in CBSE Class 11 Informatics Practices C++ Practical List worksheets?

CBSE Class 11 Informatics Practices C++ Practical List worksheets cover all topics as per the latest syllabus for current academic year.

How can I use worksheets to improve my Class 11 Informatics Practices scores?

Regular practice with Class 11 Informatics Practices worksheets can help you understand all concepts better, you can identify weak areas, and improve your speed and accuracy.