What are the arguments of a triangle?
x1, y1, x2, y2, x3, y3
What does boolean mean?
It's a true or false statement
What does system variable mouseX do?
Tracks the location of the mouse on the X axis
Which lines represents a Nested Conditional?
Line 14-22
How do you change the opacity of a shape?
fourth argument of your fill
What are the arguments of an arc?
x, y, width, height, start, stop
What type of statement is a single test single result conditional?
if
What does system variable mouseY do?
Tracks the location of the mouse on the Y axis
Which lines represent a for loop?
Line 5-7
T/F: a vertex is customizable shape.
True
How do you create an arc using degrees instead of radians?
angleMode(DEGREES)
What type of statement is a single test multiple result conditional?
if else
What does system variable height do?
Tracks the height of the canvas
What line displays an array?
Line 1
T/F: A for loop contains a variable and a test
False
What are the arguments of an arc?
x, y, width, height, start, stop
What type of statement is a multiple test multiple result conditional?
if else if
What does system variable console.log do?
show the results in the console.log
On which lines are variable being declared?
Lines 4,5,15,16,18