Quiz on Program Control: Repetition in C Programming

Quiz on Program Control: Repetition in C Programming

12th Grade

14 Qs

quiz-placeholder

Similar activities

Python general Quizz

Python general Quizz

12th Grade

15 Qs

การเขียนโปรแกรม C เบื้องต้น

การเขียนโปรแกรม C เบื้องต้น

12th Grade

13 Qs

Introduction To Programming - Lesson Exception Handling

Introduction To Programming - Lesson Exception Handling

11th Grade - University

13 Qs

Quiz aula 6

Quiz aula 6

9th - 12th Grade

10 Qs

Quiz aula 7

Quiz aula 7

9th - 12th Grade

10 Qs

FED recap

FED recap

9th Grade - University

17 Qs

แข่งขันcodingม.ปลาย

แข่งขันcodingม.ปลาย

12th Grade - University

15 Qs

9 Weeks Test

9 Weeks Test

9th - 12th Grade

16 Qs

Quiz on Program Control: Repetition in C Programming

Quiz on Program Control: Repetition in C Programming

Assessment

Quiz

Information Technology (IT)

12th Grade

Easy

Created by

PANDU WICAKSONO

Used 1+ times

FREE Resource

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary purpose of repetition in programming?

To create a new variable

To repeat a block of code multiple times

To execute a block of code only once

To end a program

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a type of loop in C?

for

while

do-while

until

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a for loop, what does 'exp1' represent?

The statements to execute

The condition to continue looping

The initialization of the loop variable

The increment or decrement operation

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if the condition in a while loop is false?

The loop will execute indefinitely

The loop will execute only once

The loop will not execute at all

The loop will execute at least once

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code: for (x=1; x <= 10; x++) printf("%d\n", x);?

1 to 10

10 to 1

No output

1 to 9

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the 'break' statement do in a loop?

Pauses the loop for a moment

Skips the current iteration

Ends the loop immediately

Restarts the loop

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a do-while loop, when is the condition evaluated?

It is not evaluated

After executing the statements

Before executing the statements

During the execution of the statements

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?