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

Types of Animation

Types of Animation

7th - 9th Grade

10 Qs

Scratch Project Editor

Scratch Project Editor

7th - 12th Grade

12 Qs

Animation Uses And Types

Animation Uses And Types

9th - 12th Grade

8 Qs

JavaScript Animations Transitions

JavaScript Animations Transitions

9th - 12th Grade

11 Qs

Moderate Questions

Moderate Questions

7th - 12th Grade

10 Qs

CHAPTER 5 - COLLISION DETECTION

CHAPTER 5 - COLLISION DETECTION

1st - 12th Grade

10 Qs

Gamestar Mechanics & Space

Gamestar Mechanics & Space

6th Grade - University

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

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