unit 4 : loops

unit 4 : loops

University

7 Qs

quiz-placeholder

Similar activities

ITC303 QUIZ #3

ITC303 QUIZ #3

University

10 Qs

Unit -2 : Assignment 1

Unit -2 : Assignment 1

University

10 Qs

Scratch 2

Scratch 2

KG - University

10 Qs

Quiz-2

Quiz-2

University

10 Qs

DFC10212 PSPD - LOOPING

DFC10212 PSPD - LOOPING

University

10 Qs

Final Test Math Computations

Final Test Math Computations

University

10 Qs

SOAL MODUL 4 : Pemahaman Looping dan Kondisional

SOAL MODUL 4 : Pemahaman Looping dan Kondisional

10th Grade - University

10 Qs

Control Statements

Control Statements

University

10 Qs

unit 4 : loops

unit 4 : loops

Assessment

Quiz

Computers

University

Easy

Created by

Abhishek Pandey

Used 3+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a loop structure in C?

for

do while

while

switch

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will the following loop run?

int i = 1;

while(i <= 5) {

printf("%d ", i);

i++;

}

1

2

5

4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop is best when the number of iterations is known?

for

while

do while

for each

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not an infinite loop?

for(;1;)

while(1)

do {} while(1);

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

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the break statement do in a loop?

Skips one iteration

Terminates the loop

Goes to next loop

None

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the use of continue statement?

Exit the loop

Repeat the loop entirely

Skip rest of the code and continue to next iteration

Stop the program

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword transfers control to a labeled statement?

goto

break

continue

switch