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. Using goto inside for loop is equivalent to using.

 
 
 
 

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

 
 
 
 

3. This loop is appropriate when execution is not known:

 
 
 
 

4. This loop uses post testing.

 
 
 
 

5. The continue statement cannot be used with.

 
 
 
 

6. A switch statement is used to.

 
 
 
 

7. The control structure do while loop is.

 
 
 
 

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

 
 
 
 

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

 
 
 
 

10. Loop within loop is said to be.

 
 
 
 

11. How many types of loops are there in C++?

 
 
 
 

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. This loop is appropriate when its execution is known.

 
 
 
 

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

 
 
 
 

16. The continue statement performs:

 
 
 
 

17. If the variable count exceeds 100, a single statement that prints “Too many” is.

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 


Scroll to Top