CBSE Class 12 Computer Science Flow Of Control Worksheet

Read and download free pdf of CBSE Class 12 Computer Science Flow Of Control Worksheet. Students and teachers of Class 12 Computer Science can get free printable Worksheets for Class 12 Computer Science Flow Of Control in PDF format prepared as per the latest syllabus and examination pattern in your schools. Class 12 students should practice questions and answers given here for Computer Science in Class 12 which will help them to improve your knowledge of all important chapters and its topics. Students should also download free pdf of Class 12 Computer Science Worksheets prepared by school teachers as per the latest NCERT, CBSE, KVS 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 12 Computer Science Flow Of Control

Class 12 Computer Science students should refer to the following printable worksheet in Pdf for Flow Of Control in Class 12. This test paper with questions and answers for Class 12 will be very useful for exams and help you to score good marks

Class 12 Computer Science Worksheet for Flow Of Control

1. Compare and contrast the following :
a. While and do.. while loop
b. If statement and switch… case
c. If statement and conditional operator

2. What is the significance of default clause in a switch … case statement?

3. Explain the four jump statements in C++.

4. Predict the output of the following code fragments :

(i) for(x=0;x<2;x++)
{
            for(j=0<j3;j++)
            cout<<’$’;
}

(ii) for(i=5;i<5;i++)
            cout<<i<<endl;
cout<<”HELLOOO”;

(iii) int x=0;
int y=10;
while(x<y)
{
            Cout<<y;
            y--;
}

(iv) int i=j=0;
do
{
            Cout<<’*’<<endl;
            J++;
}while(j<=0);

(v) …
….
….
Switch(x)
{
            Case 1 : cout<<’I’<<endl;
            Case 2 : cout<< ‘N’<<endl;
            Case 3 : cout<<’D’<<endl; break;
            Case 4: cout<<’I’<<endl;
            Case 5 : cout<<’A’<<endl;
            Default : cout<<”Wrong Number”;
}
What will be the output if the user enters ---
(a) 1 (b) 3 (c) 7 (d) 4

(vi) …..
….
long num=6364837;
long result=0;
do
{
            result *=10;
            int num1 = num%10;
            Result += num1;
            Num/=10;
}while(num);
Cout<<”The result is “<<result<<endl;
}

5. Identify the errors(including logical errors if any) in the following program :
(i) int i=5;
while((i<10) && (i>20))
            Cout<<” In the loop”;
i--;
(ii) int x=10
do
{
            Cout<<”god show”;
            x-=2;
}while(x!=5)

PROGRAMS

1. WAP to display all the multiples of 3 between 20 and 50.

2. To accept a character and display whether it is a vowel or not.

3. To accept numbers from (1- 7) and display the corresponding week day . An error message should be displayed if the user enters any other number.

4. To display all even numbers between 50 and 80 using do…while loops.

5. To print Fibonacci series between 0 and 30.

6. To accept a number and display whether it is a prime number or not.

7. To accept a number and display whether it is an Armstrong number or not.

8. To display the factorial of a number accepted by the user.

9. To accept a number and display its table upto 10 in proper format.

10. To accept 3 numbers and find the largest number. The program should continue as long as the user wishes to.

11. To accept a number and display whether it is a digit , an alphabet or a special character.

12. To accept a number and display its square if the number is even and cube if it is odd.

13. Write a menu driven program to form a CALCULATOR which does the following operations – Addition if the user enters ‘+’ , Subtraction if the user enters ‘-‘ , multiplication if the user enters ‘*’ and Division if the user enters ‘/’.
Note : Use Switch – case and the program should continue as long as the user wishes to.

14. WAP to print the sum of first n natural numbers. Accept the value of n from the user.

15. WAP to accept a year and print whether it is a leap year or not.

16. Write a menu driven program to calculate the area of a rectangle , circle , triangle or square depending on the option chosen by the user. The user should be allowed to exit the program only through the exit option of the MAIN MENU.

17. WAP to accept a number and produce the following output according to the number entered.:
*
* *
* * *
* * **
* * * *
( in the above output the number entered is 5)

18. WAP to display the sum of the following series after accepting the values of x and n X + x2/2 + x3/3 +x4/4 ………………………………xn/n

19. WAP to accept a number and then display the reverse of that number.

20. WAP to find the roots of a quadratic equation.

21. WAP to accept 10 numbers and display whether the number entered is even or odd. Also display the count of even and odd numbers.

22. WAP to accept 10 numbers and display the greatest number , smallest number and sum of all the numbers.

More Worksheets for Class 12 Computer Science
CBSE Class 12 Computer Science Arrays Stacks Queues And Linked List Worksheet Set A
CBSE Class 12 Computer Science Arrays Stacks Queues And Linked List Worksheet Set B
CBSE Class 12 Computer Science Arrays Worksheet
CBSE Class 12 Computer Science Boolean Algebra Worksheet Set A
CBSE Class 12 Computer Science Boolean Algebra Worksheet Set B
CBSE Class 12 Computer Science C++ Programming Worksheet
CBSE Class 12 Computer Science Case Study Based Questions
CBSE Class 12 Computer Science Class And Objects Worksheet Set A
CBSE Class 12 Computer Science Class And Objects Worksheet Set B
CBSE Class 12 Computer Science Classes Objects Constructors And Destructors Worksheet
CBSE Class 12 Computer Science Communication And Network Concepts Worksheet
CBSE Class 12 Computer Science Computer Networking Worksheet
CBSE Class 12 Computer Science Constructors And Destructors Worksheet
CBSE Class 12 Computer Science Data File Handling Worksheet
CBSE Class 12 Computer Science Database Concepts And Sql Worksheet
CBSE Class 12 Computer Science Dbms And Structured Query Language Worksheet
CBSE Class 12 Computer Science Flow Of Control Worksheet
CBSE Class 12 Computer Science Function Overloading Worksheet
CBSE Class 12 Computer Science Function And Structures Worksheet
CBSE Class 12 Computer Science Inheritance Extending Classes Worksheet
CBSE Class 12 Computer Science Linked Lists Stacks And Queues Worksheet
CBSE Class 12 Computer Science Network And Communication Technology Worksheet
CBSE Class 12 Computer Science Object Oriented Programming In C++ Worksheet
CBSE Class 12 Computer Science Object Oriented Programming Worksheet
CBSE Class 12 Computer Science Oop Classes And Objects Worksheet
CBSE Class 12 Computer Science Pointer Worksheet
CBSE Class 12 Computer Science Program List Worksheet
CBSE Class 12 Computer Science Programming In C++ Worksheet
CBSE Class 12 Computer Science Revision Worksheet Set A
CBSE Class 12 Computer Science Revision Worksheet Set B
CBSE Class 12 Computer Science Revision Worksheet Set C
CBSE Class 12 Computer Science SQL Worksheet Set A
CBSE Class 12 Computer Science SQL Worksheet Set B
CBSE Class 12 Computer Science Stacks Queues And Linked List Worksheet
CBSE Class 12 Computer Science Sure Shot Questions Worksheet Set A
CBSE Class 12 Computer Science Sure Shot Questions Worksheet Set B
CBSE Class 12 Computer Science Sure Shot Questions Worksheet Set C
CBSE Class 12 Computer Science Sure Shot Questions Worksheet Set D
CBSE Class 12 Computer Science Text Files Worksheet
CBSE Class 12 Computers Boolean Algebra Worksheet
CBSE Class 12 Computers Classes And Objects Worksheet
CBSE Class 12 Computers Constructors And Destructors Worksheet
CBSE Class 12 Computers Data Structures Worksheet
CBSE Class 12 Computers Files Worksheet
CBSE Class 12 Computers Inheritance Worksheet Set A
CBSE Class 12 Computers Inheritance Worksheet Set B
CBSE Class 12 Computers Networking Worksheet
CBSE Class 12 Computers Object Oriented Programming Worksheet
CBSE Class 12 Computers Pointers Worksheet

More Study Material

CBSE Class 12 Computer Science Flow Of Control Worksheet

We hope students liked the above worksheet for Flow Of Control designed as per the latest syllabus for Class 12 Computer Science released by CBSE. Students of Class 12 should download in Pdf format and practice the questions and solutions given in the above worksheet for Class 12 Computer Science on a daily basis. All the latest worksheets with answers have been developed for Computer Science 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. Studiestoday is the best portal for Class 12 students to get all the latest study material free of cost.

Worksheet for Computer Science CBSE Class 12 Flow Of Control

Expert teachers of studiestoday have referred to the NCERT book for Class 12 Computer Science to develop the Computer Science Class 12 worksheet. If you download the practice worksheet for one chapter daily, you will get higher and better marks in Class 12 exams this year as you will have stronger concepts. Daily questions practice of Computer Science worksheet and its study material will help students to have a stronger understanding of all concepts and also make them experts on all scoring topics. You can easily download and save all revision worksheet for Class 12 Computer Science also from www.studiestoday.com without paying anything in Pdf format. 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 12 Computer Science designed by our teachers

Flow Of Control worksheet Computer Science CBSE Class 12

All worksheets given above for Class 12 Computer Science have been made as per the latest syllabus and books issued for the current academic year. The students of Class 12 can be rest assured that the answers have been also provided by our teachers for all worksheet of Computer Science so that you are able to solve the questions and then compare your answers with the solutions provided by us. We have also provided a lot of MCQ questions for Class 12 Computer Science in the worksheet so that you can solve questions relating to all topics given in each chapter. All study material for Class 12 Computer Science students have been given on studiestoday.

Flow Of Control CBSE Class 12 Computer Science Worksheet

Regular worksheet practice helps to gain more practice in solving questions to obtain a more comprehensive understanding of Flow Of Control concepts. Worksheets play an important role in developing an understanding of Flow Of Control in CBSE Class 12. Students can download and save or print all the worksheets, printable assignments, and practice sheets of the above chapter in Class 12 Computer Science in Pdf format from studiestoday. You can print or read them online on your computer or mobile or any other device. After solving these you should also refer to Class 12 Computer Science MCQ Test for the same chapter.

Worksheet for CBSE Computer Science Class 12 Flow Of Control

CBSE Class 12 Computer Science best textbooks have been used for writing the problems given in the above worksheet. If you have tests coming up then you should revise all concepts relating to Flow Of Control and then take out a print of the above worksheet and attempt all problems. We have also provided a lot of other Worksheets for Class 12 Computer Science which you can use to further make yourself better in Computer Science

Where can I download latest CBSE Printable worksheets for Class 12 Computer Science Flow Of Control

You can download the CBSE Printable worksheets for Class 12 Computer Science Flow Of Control for latest session from StudiesToday.com

Can I download the Printable worksheets of Flow Of Control Class 12 Computer Science in Pdf

Yes, you can click on the links above and download Printable worksheets in PDFs for Flow Of Control Class 12 for Computer Science

Are the Class 12 Computer Science Flow Of Control Printable worksheets available for the latest session

Yes, the Printable worksheets issued for Class 12 Computer Science Flow Of Control have been made available here for latest academic session

How can I download the Class 12 Computer Science Flow Of Control Printable worksheets

You can easily access the links above and download the Class 12 Printable worksheets Computer Science Flow Of Control for each chapter

Is there any charge for the Printable worksheets for Class 12 Computer Science Flow Of Control

There is no charge for the Printable worksheets for Class 12 CBSE Computer Science Flow Of Control you can download everything free

How can I improve my scores by solving questions given in Printable worksheets in Class 12 Computer Science Flow Of Control

Regular revision of practice worksheets given on studiestoday for Class 12 subject Computer Science Flow Of Control can help you to score better marks in exams

Are there any websites that offer free test sheets for Class 12 Computer Science Flow Of Control

Yes, studiestoday.com provides all latest NCERT Flow Of Control Class 12 Computer Science test sheets with answers based on the latest books for the current academic session

Can test papers for Class 12 Computer Science Flow Of Control be accessed on mobile devices

Yes, studiestoday provides worksheets in Pdf for Flow Of Control Class 12 Computer Science in mobile-friendly format and can be accessed on smartphones and tablets.

Are worksheets for Flow Of Control Class 12 Computer Science available in multiple languages

Yes, worksheets for Flow Of Control Class 12 Computer Science are available in multiple languages, including English, Hindi