C Language Loop and Array Quiz

C Language Loop and Array Quiz

University

22 Qs

quiz-placeholder

Similar activities

OOPS-1

OOPS-1

University

20 Qs

C Programming Upto Loops

C Programming Upto Loops

University

20 Qs

Pointers

Pointers

University

20 Qs

C Programming Unit-1 Test-2

C Programming Unit-1 Test-2

University

20 Qs

PSP Module-4

PSP Module-4

University

20 Qs

Brain IT

Brain IT

University

20 Qs

oop with c++

oop with c++

University

20 Qs

Flow of Control in C++ ( Conditional statements)

Flow of Control in C++ ( Conditional statements)

9th Grade - University

17 Qs

C Language Loop and Array Quiz

C Language Loop and Array Quiz

Assessment

Quiz

Computers

University

Medium

Created by

Fidel Romasanta

Used 2+ times

FREE Resource

22 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

for (int i = 0; i < n; i++)

for int i = 0; i < n; i++

for (int i = 0; i < n)

for (int i = 0; i++)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens when the condition in a do-while loop is initially false?

Infinite loop

The loop does not execute

Compilation error

The loop executes once

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the second statement in a for loop?

To initialize the loop variable

To specify the condition to continue the loop

To update the loop variable

To execute the loop body

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to skip the current iteration of a loop in C?

break

return

continue

goto

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if there is no update statement in a for loop?

The loop will not execute

Compilation error

The loop will execute infinitely if the condition is true

Undefined behavior

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following correctly initializes a loop variable and ensures it executes exactly 5 times?

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

while (int i <= 5)

for (int i = 1; i <= 5; i++)

do { ... } while (i < 5)

7.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

What will be the output of the following code?

    int i = 0;

    while (i < 5) {

        printf("%d ", i);

        i++;

    }

0 1 2 3 4

1 2 3 4 5

0 1 2 3 4 5

Infinite loop

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?