Python Graphics

Python Graphics

6th - 8th Grade

10 Qs

quiz-placeholder

Similar activities

การใช้แนวคิดเชิงนามธรรม

การใช้แนวคิดเชิงนามธรรม

6th - 8th Grade

15 Qs

การตกแต่งภาพเบื้องต้น

การตกแต่งภาพเบื้องต้น

7th - 8th Grade

10 Qs

Basics of Banking

Basics of Banking

8th Grade

11 Qs

Tập huấn kỹ năng CNTT trong dạy học trực tuyến 2021

Tập huấn kỹ năng CNTT trong dạy học trực tuyến 2021

1st - 10th Grade

10 Qs

اختبار الفصل الدراسي الأول - ثامن

اختبار الفصل الدراسي الأول - ثامن

8th Grade

10 Qs

Python with DataScience

Python with DataScience

7th Grade - University

10 Qs

Javascript mine

Javascript mine

7th Grade

15 Qs

Unit #8 | Worksheet #2

Unit #8 | Worksheet #2

6th Grade

10 Qs

Python Graphics

Python Graphics

Assessment

Quiz

Computers

6th - 8th Grade

Practice Problem

Hard

Created by

Zhumaniiaz Mamataliev

Used 32+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is Turtle graphics in Python?

A type of computer game.

A feature that allows users to write text

A method for creating 3D animations in Python

A feature that allows users to create images using a turtle that can move around the screen based on simple commands.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you draw a SQUARE using Turtle graphics & loop?

import turtle
# Create turtle object

t = turtle.Turtle()
for i in range(4):

t.forward(100)
t.right(90)

import turtle t = turtle.Turtle() t.forward(100) t.right(90) t.forward(100) t.right(90) t.forward(100) t.right(90)

import turtle

t = turtle.Turtle() t.forward(100)

t.left(90)

t.forward(100)

t.left(90) t.forward(100)

t.left(90)

import turtle t = turtle.Turtle() t.forward(100) t.right(90) t.forward(100) t.right(90) t.forward(100) t.right(90) t.forward(100)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you draw a CIRCLE using Turtle graphics?

import turtle

t = turtle.Turtle() t.draw_circle(100)

import turtle

t = turtle.Turtle() t.circle(100)

import turtle

t = turtle.Turtle() t.create_circle(100)

import turtle

t = turtle.Turtle() t.draw_shape(100)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the primary shapes that can be drawn using Python graphics?

squares

rectangles, circles, lines

triangles

ovals

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you draw a TRIANGLE using Turtle graphics?

import turtle # Create turtle object

t = turtle.Turtle() # Draw triangle

for i in range(3):

t.forward(100)

t.left(120)

import turtle t = turtle.Turtle() t.forward(100) t.left(120) t.forward(100) t.right(120) t.forward(100) t.left(120)

import turtle t = turtle.Turtle() t.forward(100) t.right(120) t.forward(100) t.right(120) t.forward(100) t.right(120)

import turtle t = turtle.Turtle() t.forward(100) t.left(120) t.forward(100) t.left(120) t.forward(100) t.left(120)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the different methods to move the Turtle in Python graphics?

forward(), backward(), right(), left()

move()

down()

rotate()

up()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you fill a shape with a specific color in Python graphics?

shape_object.fill_color('specific_color')

color_shape('specific_color')

{ shape_object.fill('specific_color') }

fill_shape('specific_color')

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?