COMPROG:UNIT#3:SWITCH CASE STATEMENT

COMPROG:UNIT#3:SWITCH CASE STATEMENT

3rd Grade

6 Qs

quiz-placeholder

Similar activities

Winter time

Winter time

1st - 5th Grade

7 Qs

Have/has - ibtidai sinif

Have/has - ibtidai sinif

1st - 5th Grade

10 Qs

ENGLISH TRY OUT GRADE 2

ENGLISH TRY OUT GRADE 2

1st - 5th Grade

10 Qs

CHAPTER 5-6

CHAPTER 5-6

1st - 5th Grade

11 Qs

COMPROG:UNIT#3:SWITCH CASE STATEMENT

COMPROG:UNIT#3:SWITCH CASE STATEMENT

Assessment

Quiz

Others

3rd Grade

Hard

Created by

dasdqaw asdasesda

Used 1+ times

FREE Resource

6 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

The statements which are used to execute only specific block of sTatements in a given series of block.

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

There are 4 types of case statements in C language. They are,

switch case

break

default

continue

goto

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

This is used to execute only specific case statements based on the switch expression. Control passes to the statement whose case constant-expression matches the value of ______ (expression).

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

is used to terminate the while loops, switch case loops and for loops from the subsequent execution.

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

is used to continue the next iteration of for loop, while loop and do-while loops. So, the remaining statements are skipped within the loop for that particular iteration.

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

is used to transfer the normal flow of a program to the specified label in the program.