MP3: Practice Test 1

MP3: Practice Test 1

9th - 12th Grade

19 Qs

quiz-placeholder

Similar activities

Python First Steps Homework Quiz

Python First Steps Homework Quiz

7th - 9th Grade

20 Qs

Loops in Python !

Loops in Python !

11th Grade

15 Qs

Hangman Game - Programming Questions

Hangman Game - Programming Questions

7th - 11th Grade

15 Qs

12IP

12IP

12th Grade

20 Qs

Input Commands Quiz

Input Commands Quiz

10th Grade

15 Qs

Python while loops

Python while loops

12th Grade

20 Qs

Python Beginner

Python Beginner

9th - 10th Grade

16 Qs

C++ Loop

C++ Loop

12th Grade

20 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?