Python Quiz 13 ( Random and Turtle Module)

Python Quiz 13 ( Random and Turtle Module)

6th - 8th Grade

8 Qs

quiz-placeholder

Similar activities

Riddles

Riddles

7th Grade

10 Qs

Wings of Fire Quiz books 1-5

Wings of Fire Quiz books 1-5

KG - Professional Development

10 Qs

Nick

Nick

7th Grade

12 Qs

Arduino Level 2

Arduino Level 2

8th Grade

13 Qs

Wings of fire

Wings of fire

2nd Grade - Professional Development

7 Qs

Adopt me pets

Adopt me pets

1st - 12th Grade

12 Qs

boss baby

boss baby

3rd - 12th Grade

12 Qs

Reptiles

Reptiles

KG - University

9 Qs

Python Quiz 13 ( Random and Turtle Module)

Python Quiz 13 ( Random and Turtle Module)

Assessment

Quiz

Other

6th - 8th Grade

Medium

Created by

Magikid Chino Hills

Used 8+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the random.randint(a, b) function do in Python?

a. Generate a random floating-point number between a and b.

b. Generate a random integer between a (inclusive) and b (inclusive).

c. Generate a random integer between a (inclusive) and b (exclusive).

d. Generate a random number between 0 and 1.


2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function is used to move the turtle forward by a specified number of units in the turtle module?

a. turtle.move()

b. turtle.forward()

c. turtle.go()

d. turtle.draw()


3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function is used to shuffle the elements of a list randomly using the random module?

a. random.shuffle()

b. random.choice()

c. random.sample()

d. random.randrange()


4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the random.seed() function in the random module?

a. It generates a random seed.

b. It resets the random number generator to a specific seed value.

c. It generates a random number.

d. It sets the seed to the current system time.


5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary purpose of the turtle module in Python?

a. Drawing graphics and creating visual designs.

b. Generating random numbers.

c. Working with databases.

d. Web scraping.


6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the turtle.pendown() function do?

a. Raises the turtle's pen.

b. Lowers the turtle's pen to draw on the screen.

c. Deletes the turtle's previous drawing.

d. Changes the turtle's color.


7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function is used to close the turtle graphics window when you are done with drawing?

a. turtle.close()

b. turtle.exit()

c. turtle.done()

d. turtle.end()


8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the turtle.color() function in the turtle module?

a. Changes the color of the turtle's shell.

b. Sets the background color of the graphics window.

c. Sets the color of the turtle's pen for drawing.

d. Changes the color of the turtle's eyes.