C Language Loop and Array Quiz

Quiz
•
Computers
•
University
•
Medium
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
Similar Resources on Wayground
20 questions
C Programming Unit-1 Test-2

Quiz
•
University
17 questions
Coding Titans

Quiz
•
University
25 questions
C PROGRAMMING

Quiz
•
University
25 questions
C Programing

Quiz
•
University
20 questions
C Programming Upto Loops

Quiz
•
University
20 questions
Code-A-Vita

Quiz
•
University
20 questions
CCE-III Programming in C Language

Quiz
•
University
20 questions
CSE C Section

Quiz
•
University
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade