MP3: Practice Test 1

MP3: Practice Test 1

9th - 12th Grade

19 Qs

quiz-placeholder

Similar activities

Python Iteration

Python Iteration

10th Grade

17 Qs

Python - Iteration (For Loops)

Python - Iteration (For Loops)

10th Grade

20 Qs

Fun with Loops

Fun with Loops

9th Grade

20 Qs

Python Basics Review

Python Basics Review

10th Grade

18 Qs

Python For And While Loop

Python For And While Loop

8th - 12th Grade

20 Qs

For and While Loop in Python

For and While Loop in Python

8th - 12th Grade

20 Qs

Python Pretest

Python Pretest

9th - 12th Grade

15 Qs

for loop

for loop

9th Grade

22 Qs

MP3: Practice Test 1

MP3: Practice Test 1

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Angelito Villalon

Used 2+ times

FREE Resource

19 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a loop used for?

To repeat a block of code multiple times

To store data

To define a function

To handle errors

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A While Loop runs until ________________.

a specified condition is false.

a specified condition is true.

the loop has iterated 10 times.

the program ends.

3.

OPEN ENDED QUESTION

3 mins • 1 pt

Define the following: a. Loop control variable b. Count Variable c. Initialize

Evaluate responses using AI:

OFF

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the two ways of ending a loop?

Using a break statement and reaching the end of the loop block

Using a continue statement and reaching the end of the loop block

Using a return statement and reaching the end of the loop block

Using a goto statement and reaching the end of the loop block

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

For questions 5-7, what is output by each of the following loops? x = 10 while (x > 5): x = x - 1 print (x)

5, 6, 7, 8, 9

6, 7, 8, 9, 10

9, 8, 7, 6, 5

10, 9, 8, 7, 6

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following loop? x = 1 while (x < 5): print (x) x = x + 2

1 3

1 2 3 4

1 2 3 4 5

1 3 5

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? ``` x = 1 while (x < 12): print (x) x = x + 3 ```

1 4 7 10

1 2 3 4 5 6 7 8 9 10 11

1 3 6 9

1 4 7 10 13

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?