ICSE Class 10 Computer Applications
Question 16 of 30
Solved 2023 Question Paper ICSE Class 10 Computer Applications — Question 16
Back to all questions20
40
Reason — Since n = 10, case 10 will be executed. It prints 20 (10 * 2) on the screen. Since break statement is missing, the execution falls through to the next case. Case 4 prints 40 (10 * 4) on the screen. Now the control finds the break statement and the control comes out of the switch statement.