Log in
Sign up for FREE
arrow_back
Library

Video Game Maker A Final

star
star
star
star
star
Last updated 13 days ago
20 questions
Note from the author:
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
Final Exam for a 10 week class on block coding using snap.berkeley.edu
Question 1
1.

Question 2
2.

Question 3
3.

Question 4
4.

Question 5
5.

Question 6
6.

Question 7
7.

Question 8
8.

Question 9
9.

Question 10
10.

Question 11
11.

Question 12
12.

Question 13
13.

Question 14
14.

Question 15
15.

Question 16
16.

Question 17
17.

Question 18
18.

Question 19
19.

Question 20
20.

Which is most true when the right arrow is pressed
move sprite left 10 steps
move sprite right
move the sprite left 20 steps
move sprite backwards
What is this code demonstrating
Conditional
Broadcast and Receive
If/Else Statement
Boolean
Highest Number is a?
Variable
Movement
Conditional
List
What program did we use to remove backgrounds from pictures for sprites?

Pixlr
Remove. bg
Canva
Google docs
an element that repeats a portion of code
Algorithm
Variable
Function
Loop
A container that holds a single number, word, or other information that you can use throughout a program
function
loop
variable
algorithm
What does this code do?
Sets Pick to one of the items from ComputerChoice
Lets you choose from Rock, Paper, Scissor,Moves a sprite to a random location
Makes 3 sprites named Rock, Paper, Scissor
What is the bottom half of this picture from this Mario code?

A Custom block
A Rubix cube
A Dice Roller
A Sensing block
Practicing is the only way to get faster at typing
True
False
Which term best describes these?
Booleans
Loops
Variables
Functions
What will this code using this conditional block (if/else) do?
Sprite says "woof woof" when the mouse is not touching the sprite
Sprite says "woof woof" when the mouse is touching the sprite
How many times can Mario touch Goomba before losing all his lives?

2
1
3
How do you know you have the correct color selected from the Pac-Man code?
Click touching [ ], then type yellow
Click touching [ ], then click the color from the rainbow color box
click touching [ ] , click on the exact object color that is on the display screen
What is "and" an example of from the fruit Sprite of the Snake code?

Variable
Loop
Boolean
Clone
What happens to this enemy Sprite when this clone script runs in Friends and Enemies?
It becomes invisible and moves in circles
It becomes partially see-through, follows the Player, and disappears when it touches the Player
It follows the Player and adds 2 points to the score when they touch
It moves away from the Player and adds points to the score
What is "or" and example of from the Pac-Man code?

Booleans
Variables
Clone
Score
If you wanted to add Score or Lives to a video game, what piece of code would you add?
Make a Variable
Make a Block
Forever
What program did we use to make costumes for You Win and You Lose?


Canva
Remove. bg
TextStudio
Pixlr
In the code below, the for loop runs with "i" going from 1 to 5. What is the value of "i" during the 3rd time through the loop?
1
2
3
5
What values does the variable "i" take as this code runs, and what is the final result?


"i" goes from 1 to 5, creating 5 clones all lined up at x-position 240
"i" goes from 1 to 5, creating 5 hidden clones that all go to the same position
"i" stays at 1, creating 1 clone that moves to position (240, -105)
"i" goes from 1 to 5, but the clones are created at random positions