General Coding
Shapes/Text
Parameters
Syntax (how code is written)
Counter Pattern
100

What do we call an error in a program?

bug

100

RANDOM NONSENSE QUESTION:

What game is Steve from?

Minecraft

100

RANDOM NONSENSE QUESTION:

What company makes the Switch console?
 

Nintendo

100

What is missing from the code below:

rect(x y w h)

THE COMMAS INBETWEEN THE PARAMETERS!!!

100

Using dot notation (sprite._______)

ex. sprite.___ = sprite.____ + #

What counter pattern would move a sprite to the right on the x-axis?

sprite.x = sprite.x + #

200

What is an algorithm?

a list of steps

200

What eliminates an outline?

noStroke()

200

which value is the y-position?

rect(100, 300, 300, 150)

300

200

What is missing from the code below:

var = createSprite(200, 200);

THE SPRITE LABEL/NAME !!!!

200

Using dot notation (sprite._______)

ex. sprite.___ = sprite.____ + #

What counter pattern would move a sprite to the down on the y-axis?

sprite.y = sprite.y + #

300

RANDOM NONSENSE QUESTION:

In Mario kart, what item takes out the first place player?

THE BLUE SHELL !!!!!

300

What do we call an immutable line of text?

string

300

which value is the width?

rect(100, 200, 300, 150)

300

300

What line of code MUST be inside the draw loop in order see the sprite on the screen?

drawSprites();
300

Using dot notation (sprite._______)

ex. sprite.___ = sprite.____ + #

What counter pattern would decrease the size of a sprite?

sprite.scale = sprite.scale - #

400

What do we call an if statement?

A conditional

400

What block determines the thickness out an outline?

strokeWeight(size)

400

What year was Roblox first released?

2006

400

var ironMaiden = createSprite(200, 200)

ironMaiden.setAnimation("apple")

drawSprites(); 

semi-colons ;

400

Using dot notation (sprite._______)

ex. sprite.___ = sprite.____ + #

What counter pattern would rotate a sprite clockwise?

sprite.rotation = sprite.rotation + #

500

Give an example of an if condition?

if{(x > 5)

sprite.setAnimation("soup");

}

500

RANDOM NONSENSE QUESTION:

Which K-pop group sings “Butter”?

BTS

500

Which parameter is missing?

regularPolygon(x, y, __, size)

# of sides

500

sprite.x = sprite / 2;

.x

500

Using dot notation (sprite._______)

ex. sprite.___ = sprite.____ + #

What counter patterns would make a sprite move diagonal toward the top left of the screen?

sprite.y = sprite.y - #;

sprite.x = sprite.x - #;


If answered correctly you may choose a team to deduct 500 points from.