Any number WITHOUT a fractional or decimal part. (eg. 1, 7, -10, 0)
What is an integer?
Code that repeats over and over.
What is a loop?
+, -, *, /.
What are arithmetic operators?
The code that you run
What is input?
A true or false value.
What is a boolean?
Code that repeats something a certain number of times.
What is a for loop?
==, !=, >, <, >=, <=
What are relational operators?
The results of the code you ran
What is output?
Any combination of characters including spaces.
What is a string?
Code that only repeats stuff as long as a condition is true.
What is a while loop?
and, or, not
What are logical operators?
Telling a computer what to do
What is computer programming?
Any number WITH a decimal point/fraction. (eg. 3.14, -1/2, 5.0)
What is a float?
The two main types of loops.
What are for and while loops?
=
What is an assignment operator?
A set of steps to complete a task
What is an algorithm?