Online MCQs Test – Control Structure – Computer 10th

Class 10th | Computer | Chapter 4 | Control Structure | Solved Online MCQs Test

Online MCQs Test of Chapter 4 (Control Structure) Computer Class 10th Science Group – Sindh Board. According to New Examination Pattern / Syllabus of Sindh Board

1. Which is not a loop structure in C++?

 
 
 
 

2. The control structure do while loop is.

 
 
 
 

3. for (int i = 1 , j = 2 ; j <= 7 ; j++) Will the above statement execute?

 
 
 
 

4. The continue statement performs:

 
 
 
 

5. This loop is appropriate when its execution is known.

 
 
 
 

6. If you have to make decision based on multiple choices, which of the following is best suited?

 
 
 
 

7. This loop tests the condition after having executed the statements within the loop.

 
 
 
 

8. for( ) loop is used when we need to perform.

 
 
 
 

9. Using goto inside for loop is equivalent to using.

 
 
 
 

10. The break statement causes an exit.

 
 
 
 

11. This loop uses post testing.

 
 
 
 

12. What is the effect of writing a break statement inside a loop?

 
 
 
 

13. ++ operator used within loops increment the value of variable by

 
 
 
 

14. When ________ is encountered inside any loop, control automatically passes to the first statement after loop.

 
 
 
 

15. The continue statement cannot be used with.

 
 
 
 

16. Loop within loop is said to be.

 
 
 
 

17. do-while loop terminates when conditional expression returns?

 
 
 
 

18. This loop is appropriate when its body is executed at least once:

 
 
 
 

19. The keyword used to transfer control from a function back to the calling function is.

 
 
 
 

20. How many choices are in single if else statement?

 
 
 
 


Scroll to Top