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

ICT Unit 3: Animation

ICT Unit 3: Animation

6th - 12th Grade

10 Qs

JavaScript Animation

JavaScript Animation

9th - 12th Grade

11 Qs

JavaScript Animates

JavaScript Animates

9th - 12th Grade

11 Qs

JavaScript Animations Transitions

JavaScript Animations Transitions

9th - 12th Grade

11 Qs

Programming For Heroes -Lesson 2

Programming For Heroes -Lesson 2

7th - 10th Grade

10 Qs

Multimedia and Animation

Multimedia and Animation

6th Grade - University

10 Qs

Instrucțiuni repetitive

Instrucțiuni repetitive

9th - 12th Grade

10 Qs

Types of Animation

Types of Animation

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