Vocab
Vocab
Vocab
Vocab
Vocab
100

What is a for loop?

A for loop lets us repeat code a fixed number of times.

100

What is a while loop?

A while loop lets us repeat code as long as something is true.

100

What is a condition in coding?

A condition is code that you put inside an if statement or while-loop.

100

What is a Boolean?

A boolean is a true or false value.

100

What is an If/Else statement?

A control structure that lets us run either one section of code or another depending on a test.

200

What is a logical operator?

A logical operator is used to make logical associations between boolean values

200

What is a comparison operator?

Used to make comparisons between values.

200

What is a randomize command?

To generate or select a random object

200

What is a break statement?

It breaks out of the current loop, without executing any more code in the loop.

200

What is an Iteration?

Repetition of instructions a specified number of times, or until a condition is met.

300

What is a lowerCamelCase in coding?

lowerCamelCase is  where the first letter is lower case, and each subsequent start of a word is upper case.

300

What does Define a Function mean in coding?

Defining a function means to teach the computer a new command and explain what it should do when receiving that command.

300

What is a Start function in coding?

This is the function that is called when you click run.

300

What is a Variable in coding?

A symbol or container that holds a value.

300

What is a Canvas in coding?

The screen in which our graphics programs are drawn.

400

What is an Event in coding?

An event is an action (such as clicking the mouse or pressing a key on the keyboard) that a program detects and uses as input.

400

What is a Computer?

A device that makes calculations, stores data, and executes instructions according to a program.

400

What is a readline function do in coding?

Allows for the reading of user input when a string is used

400

What is a readInt function do in coding?

Allows for the reading of user input when an integer is used

400

What is a coordinate system?

A coordinate system uses numbers as coordinates to place objects in a geometric space.

500

What does a println function do in coding?

Function that prints out a line to the user

500

What does a getWidth(); command do in coding?

Function that returns the width of the graphics canvas

500

What does a getHeight(); command do in coding?

Function that returns the height of the graphics canvas

500

What is a Callback Function?

A function passed as a parameter to another function in order to be called later.

500

what is Arithmetic Operators in coding?

Arithmetic operators include addition, subtraction, multiplication, division, and modulus. These operators are used to perform basic mathematical tasks.