Search Header Logo

Control Statement

Authored by Farhan Mulla

Education

Professional Development

Used 1+ times

Control Statement
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an arithmetic operator in C?

&&

=

%

|

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a conditional control structure in C?

for

while

if

continue

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int i = 0;

while (i < 3) {

printf("%d", i);

i++;

}

0123

012

123

0 1 2

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to exit a loop immediately in c?

skip

exit

continue

break

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct syntax for a for loop?

for (i = 0; i < 5; i++)

for (i < 5; i++; i = 0)

for (i = 0, i < 5, i++)

for i = 0 to 5

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the continue statement in a loop?

Ends the program

Restarts the loop

Skips the current iteration and continues with the next one

Skips the loop entirely

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int x = 5;

if (x > 3) {

printf("Yes");

}

Prints "No"

Prints "Yes"

Prints nothing

Gives error

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?