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. ++ operator used within loops increment the value of variable by

 
 
 
 

2. The break statement causes an exit.

 
 
 
 

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

 
 
 
 

4. The continue statement performs:

 
 
 
 

5. The control structure do while loop is.

 
 
 
 

6. A switch statement is used to.

 
 
 
 

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

 
 
 
 

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

 
 
 
 

9. To perform a set of instructions repeatedly which of the following can be used?

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

13. This loop uses post testing.

 
 
 
 

14. Loop within loop is said to be.

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

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

 
 
 
 

20. The continue statement cannot be used with.

 
 
 
 


Scroll to Top