turtle python

turtle python

Professional Development

6 Qs

quiz-placeholder

Similar activities

CT Program

CT Program

Professional Development

10 Qs

Screencastify

Screencastify

Professional Development

9 Qs

Django

Django

Professional Development

4 Qs

Body Language Quiz

Body Language Quiz

University - Professional Development

7 Qs

Disney Trivia

Disney Trivia

KG - Professional Development

10 Qs

Written communication: emails

Written communication: emails

Professional Development

10 Qs

Fitur Lain pada Aplikasi Gmail

Fitur Lain pada Aplikasi Gmail

Professional Development

10 Qs

Note 10+ 5G Quiz

Note 10+ 5G Quiz

Professional Development

10 Qs

turtle python

turtle python

Assessment

Quiz

Professional Development

Professional Development

Hard

Created by

Assistant Chennai

Used 15+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output shape of the following Python code?

import turtle

t=turtle.Pen()

for i in range(0,4):

t.forward(100)

t.left(120)

square

rectange

triangle

kite

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The number of lines drawn in each case, assuming that the turtle module has been imported:

Case 1:

for i in range(0,10):

turtle.forward(100)

turtle.left(90)

Case 2:

for i in range(1,10):

turtle.forward(100)

turtle.left(90)

10,9

9,10

9,9

10,10

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The command which helps us to reset the pen (turtle):

turtle.reset

turtle.penreset

turtle.penreset()

turtle.reset()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Fill in the blank such that the following Python code results in the formation of an inverted, equilateral triangle.

import turtle

t=turtle.Pen()

for i in range(0,3):

t.forward(150)

t.right(_____)

-60

120

-120

60

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output shape of the following Python code?

import turtle

t=turtle.Pen()

for i in range(1,4):

t.forward(60)

t.left(90)

Rectangle

Trapezium

Triangle

Square

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code?

import turtle

t=turtle.Pen()

t.goto(300,9)

t.position()

300.00, 9.00

9, 300

300, 9

9.00, 300.00

Discover more resources for Professional Development