C Language Loop and Array Quiz

C Language Loop and Array Quiz

University

22 Qs

quiz-placeholder

Similar activities

Progdas-Q2-2024-1

Progdas-Q2-2024-1

University

20 Qs

Quiz I - Programming in C

Quiz I - Programming in C

University

20 Qs

BSCE_MIDTERM_EXAM

BSCE_MIDTERM_EXAM

University

25 Qs

Python Prowess

Python Prowess

University

20 Qs

C programming syntax quiz

C programming syntax quiz

University

20 Qs

Array and Loops in C#

Array and Loops in C#

University

20 Qs

CCE-III Programming in C Language

CCE-III Programming in C Language

University

20 Qs

Coding Titans

Coding Titans

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?