CMU CS Academy Unit 6.3 Motion

CMU CS Academy Unit 6.3 Motion

9th Grade

8 Qs

quiz-placeholder

Similar activities

JavaScript Animates

JavaScript Animates

9th - 12th Grade

11 Qs

Diagramas de Flujo

Diagramas de Flujo

7th - 10th Grade

10 Qs

kayla dan syakira

kayla dan syakira

5th Grade - University

10 Qs

COMANDOS DE SCRATCH

COMANDOS DE SCRATCH

6th - 11th Grade

5 Qs

System Utilities

System Utilities

9th - 12th Grade

5 Qs

KS3 - Fun Computing Quiz 2

KS3 - Fun Computing Quiz 2

4th - 12th Grade

10 Qs

CMU CS1 Unit 6

CMU CS1 Unit 6

9th Grade

8 Qs

CMU CS Academy Unit 6.3.4 Special Types of Motion

CMU CS Academy Unit 6.3.4 Special Types of Motion

9th Grade

7 Qs

CMU CS Academy Unit 6.3 Motion

CMU CS Academy Unit 6.3 Motion

Assessment

Quiz

Computers

9th Grade

Medium

Created by

Joan Goldberg

Used 51+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is c.dx and c.dy?

c = Circle(50, 150, 20, fill='navy')

c.dx = 5

c.dy = 6

properties

custom properties

methods

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the default value of app.stepsPerSecond?

onStep is a function that is called app.stepsPerSecond number of times per second.

1

5

30

90

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which code represents motions that are horizontal?

c = Circle(50, 150, 20, fill='navy')

c.dx = 5

c.dy = 6

c.centerX += c.dx

c.centerY += c.dy

c.centerX += c.dx

c.centerY += c.dy

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

Which code represents motions that are horizontal?

c = Circle(50, 150, 20, fill='navy')

c.dx = 5

c.dy = 6

c.top += c.dy

c.bottom += c.dy

c.right += c.dx

c.left+= c.dx

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

Which code represents motions that are vertical?

c = Circle(50, 150, 20, fill='navy')

c.dx = 5

c.dy = 6

c.top += c.dy

c.bottom += c.dy

c.right += c.dx

c.left+= c.dx

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

Which code represents motions that are moving down?

c = Circle(50, 150, 20, fill='navy')

c.dx = 5

c.dy = 6

c.top += c.dy

c.bottom += c.dy

c.right += c.dx

c.left+= c.dx

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

Which code represents motions that are moving right?

c = Circle(50, 150, 20, fill='navy')

c.dx = 5

c.dy = 6

c.top += c.dy

c.bottom += c.dy

c.right += c.dx

c.left+= c.dx

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which code represents motions that are diagonal?

c = Circle(50, 150, 20, fill='navy')

c.dx = 5

c.dy = 6

c.centerX += c.dx

c.centerY += c.dy

c.centerX += c.dx

c.centerY += c.dy