syntax error - CORRECT ANSWER✅✅An error in a program that makes it impossible to parse — and
therefore impossible to interpret.
runtime error - CORRECT ANSWER✅✅An error that does not occur until the program has started to
execute but that prevents the program from continuing.
Logical Errors - CORRECT ANSWER✅✅Logical errors occur when a programmmer uses a wrong strategy.
To the computer, nothing is wrong with the syntax. The problem is that the instructions are just plain
wrong.
Integer - CORRECT ANSWER✅✅All whole numbers (both positive and negative) and zero.
float - CORRECT ANSWER✅✅a decimal number
Boolean - CORRECT ANSWER✅✅A single value of either TRUE or FALSE
Variable - CORRECT ANSWER✅✅associates a name with a value. serves two purpose:
1. help the programmer keep track of data that change over time
2. allow the programmer to refer to a complex piece of information with a simple name (called
abstraction)
ABS function - CORRECT ANSWER✅✅returns the absolute value of the number analyzed by the
function
Constant - CORRECT ANSWER✅✅A term without a variable
user input - CORRECT ANSWER✅✅'Input' is information supplied to a computer or program. 'Output' is
information provided by a computer or program.