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. This loop uses post testing.

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

6. The control structure do while loop is.

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

11. The continue statement cannot be used with.

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

19. The continue statement performs:

 
 
 
 

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

 
 
 
 


Scroll to Top