CS Python Fundamentals Flashcard 4 Practice

CS Python Fundamentals Flashcard 4 Practice

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

10 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the best definition of the term initialization?

Back

The process of setting a variable equal to a known value.

2.

FLASHCARD QUESTION

Front

In the following code, what is output?
Options:
1 2 3 4 5 6 7,
1 2 3 4 5 6,
1 3 5 7 9 11,
1 2 3 4 5 6

Back

1 2 3 4 5 6

3.

FLASHCARD QUESTION

Front

In the following code, c would be called a(an) ...

Back

loop control variable

4.

FLASHCARD QUESTION

Front

What would be printed by the following loop? Options: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20, 1 4 7 10 13 16 19, 4 7 10 13 16 19, 4 7 10 13 16 19 22

Back

4 7 10 13 16 19 22

5.

FLASHCARD QUESTION

Front

Which of the following is NOT true about for loops? They frequently use the range function, They allow the user to have control to stop the loop, They are used when you know in advance how many times a loop should run, They can execute multiple lines of indented code

Back

They allow the user to have control to stop the loop

6.

FLASHCARD QUESTION

Front

What is output by the following code?
for x in range(5):
print (x,end="")

Back

0 1 2 3 4

7.

FLASHCARD QUESTION

Front

What is output by the following code?
for x in range(10, 1, -3):
print(x, end=" ")

Back

10 7 4

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?