UNIT 2: Programing with Turtle Graphics
Unit 3: Python and Console Interaction
Unit 4: Conditionals
Unit 5: Looping
Unit 6: Life
100

When the following for loop is complete, how many spaces will Tracy have moved?

50 spaces / 60 spaces / 10 spaces / 5 spaces

50 spaces

100

What is the final result of the expression 4 + 5*3?

27/12/21/19

19

100

See question 2 unit 4 quiz

round(pi, 2)

100

Question 2

for i in range(3, 10, 2):

     print(i)

100

What's your favorite memory about this year of life?

Whatever you say.
200

How many times can you call the "function" in your code?

Once / It depends on the function / As many times as you want / Not more than the amount of commands the function holds

As many times as you want
200

What is the final result of the expression 7/2+6?

0/ 9.5 / 9/ 0.875

9.5

200

See question 3 unit 4 quiz

Sometimes numbers can be rounded in unexpected ways.

200
What is the value of num when this loop completes?


num = 0

for i in range(2, 8, 2):

     num = num + i

12

200

What was a negative experience about life this year?

Whatever you say.

300

Which of the following is NOT a command you can give to Tracy?

Color / Turn / Backward / Left

Turn

300

What kind of data does a float variable contain?

Numbers that can have decimal components. 

300

See question 9 chapter 4 quiz

5

8

300

Question 4 chapter 5 quiz

for i in range(0, 10):

300

What's some goals you have in life?

Cool
400

See Question 11 on Chapter 2 Quiz.

Defining a function means you are teaching the computer a new word. Calling a function means you are commanding the computer to complete defined actions.

400

What does the following code print?

x = 3.4

y = 1

print(int(x))

print(x + y)

3

4.4

400

See question 10 chapter 4 quiz

Almost eligible for Driver's License

400

Question 10 Chapter 5 quiz

0

1

0

1

500

See question 15 on Chapter 2 quiz.

for i in range(4):

    left(90)

    forward(90)

500

What is the final result of the expression 2**3?

8

500

Question 13

You are average height

500

Question 15. Chapter 5 Quiz

On Line 9

M
e
n
u