Loops-Quiz

Loops-Quiz

6th - 8th Grade

10 Qs

quiz-placeholder

Similar activities

Lesson 11 - Iterative statements

Lesson 11 - Iterative statements

5th - 8th Grade

10 Qs

C# and Python

C# and Python

4th Grade - University

7 Qs

Medical Assistant Roles and Differences

Medical Assistant Roles and Differences

8th Grade - University

12 Qs

CAP Aircrew Safety

CAP Aircrew Safety

6th Grade - Professional Development

15 Qs

Types of Questions

Types of Questions

3rd Grade - University

10 Qs

Language Test IV

Language Test IV

6th Grade

15 Qs

Health Science Pathways

Health Science Pathways

7th - 12th Grade

10 Qs

Lesson 15 - Test 2

Lesson 15 - Test 2

5th - 8th Grade

15 Qs

Loops-Quiz

Loops-Quiz

Assessment

Quiz

Professional Development

6th - 8th Grade

Medium

Created by

harshit shukla

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q. 1 Which of the following is the correct syntax for a for loop in Python?

A) for x in range(10):

B) for (x=0; x < 10; x++):

C) for x to 10:

D) for x from 0 to 10:

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

2. What is the output of the following Python code?

for i in range(3):

print(i)

A) 1 2 3

B) 0 1 2

C) 0 1 2 3

D) Error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

3. Which of the following statements about the while loop is true?

A) A while loop runs a

fixed number of times.

B) A while loop continues to

execute as long as its condition is True.

C) A while loop is

faster than a for loop.

D) A while loop executes at least once,

no matter the condition.

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

4. How many times will the following while loop execute?

i = 0

while i < 5:

i += 1

A) 4

B) 5

C) Infinite

D) 0

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q.5. What is the output of the following code?

x = 0

while x < 3:

print(x)

x += 1

A) 0 1 2 3

B) 1 2 3

C) 0 1 2

D) Infinite loop

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q.6. What will happen if the condition in a

while loop is always True and no break statement is present?

A) The loop will execute

a fixed number of times.

B) The loop will run indefinitely,

creating an infinite loop.

C) The loop will never execute.

D) The loop will execute only once.

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q.7. What is the main difference

between a for loop and a while loop?

A) A for loop repeats based on a condition,

while a while loop repeats for a

specific number of iterations.

B) A for loop repeats for a specific number

of iterations, while a while loop repeats

based on a condition.

C) Both repeat for a specific

number of iterations.

D) Both repeat

based on a condition.

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?