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

quiz-placeholder

Similar activities

Scratch Quiz - 3

Scratch Quiz - 3

KG - 9th Grade

10 Qs

บทที่2 animations

บทที่2 animations

5th - 10th Grade

10 Qs

CMU CS1 Unit 6

CMU CS1 Unit 6

9th Grade

8 Qs

Moderate Questions

Moderate Questions

7th - 12th Grade

10 Qs

Hummingbird Robotics

Hummingbird Robotics

6th - 9th Grade

12 Qs

System Utilities

System Utilities

9th - 12th Grade

5 Qs

Scratch 2

Scratch 2

KG - University

10 Qs

Scratch Review

Scratch Review

7th - 9th Grade

10 Qs

CMU CS Academy Unit 6.3.4 Special Types of Motion

CMU CS Academy Unit 6.3.4 Special Types of Motion

Assessment

Quiz

Computers

9th Grade

Medium

Created by

Joan Goldberg

Used 45+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Identify the motion

c = Circle(200, 200, 20, fill='navy')

c.dx = 5


def onStep():

c.centerX += c.dx

if (c.left > 400):

c.right = 0

reverses the motion

stops the motion

wraparound motion

bouncing horizontally

bouncing vertically

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Identify the motion

c = Circle(200, 200, 20, fill='navy')

c.dx = 5


def onStep():

c.centerX += 0

reverses the motion

stops the motion

wraparound motion

bouncing horizontally

bouncing vertically

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Identify the motion

c = Circle(200, 200, 20, fill='navy')

c.dx = 5


def onStep():

c.centerX += c.dx

if ((c.left < 0) or (c.right > 400)):

c.dx = -c.dx

reverses the motion

stops the motion

wraparound motion

bouncing horizontally

bouncing vertically

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Identify the motion

c = Circle(200, 200, 20, fill='navy')

c.dy = 5


def onStep():

c.centerY += c.dy

if ((c.top < 0) or (c.bottom > 400)):

c.dy = -c.dy

reverses the motion

stops the motion

wraparound motion

bouncing horizontally

bouncing vertically

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Identify the motion

c = Circle(200, 200, 20, fill='navy')

c.dx = 5


def onStep():

c.centerX += -c.dx

reverses the motion

stops the motion

wraparound motion

bouncing horizontally

bouncing vertically

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find x = 310 // 60

0

5

5.17

10

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find x = 310 % 60

0

5

5.17

10