What do we call an error in a program?
bug
RANDOM NONSENSE QUESTION:
What game is Steve from?
Minecraft
RANDOM NONSENSE QUESTION:
What company makes the Switch console?
Nintendo
What is missing from the code below:
rect(x y w h)
THE COMMAS INBETWEEN THE PARAMETERS!!!
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 + #
What is an algorithm?
a list of steps
What eliminates an outline?
noStroke()
which value is the y-position?
rect(100, 300, 300, 150)
300
What is missing from the code below:
var = createSprite(200, 200);
THE SPRITE LABEL/NAME !!!!
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 + #
RANDOM NONSENSE QUESTION:
In Mario kart, what item takes out the first place player?
THE BLUE SHELL !!!!!
What do we call an immutable line of text?
string
which value is the width?
rect(100, 200, 300, 150)
300
What line of code MUST be inside the draw loop in order see the sprite on the screen?
Using dot notation (sprite._______)
ex. sprite.___ = sprite.____ + #
What counter pattern would decrease the size of a sprite?
sprite.scale = sprite.scale - #
What do we call an if statement?
A conditional
What block determines the thickness out an outline?
strokeWeight(size)
What year was Roblox first released?
2006
var ironMaiden = createSprite(200, 200)
ironMaiden.setAnimation("apple")
drawSprites();
semi-colons ;
Using dot notation (sprite._______)
ex. sprite.___ = sprite.____ + #
What counter pattern would rotate a sprite clockwise?
sprite.rotation = sprite.rotation + #
Give an example of an if condition?
if{(x > 5)
sprite.setAnimation("soup");
}
RANDOM NONSENSE QUESTION:
Which K-pop group sings “Butter”?
BTS
Which parameter is missing?
regularPolygon(x, y, __, size)
# of sides
sprite.x = sprite / 2;
.x
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.