1.1.3 Happy Balance Vocab Flashcards
conditional statements
A programming statement that evaluates a true/false Boolean expression to determine the next steps in a program.
written as “if-then” or “if-then-else” statements
Boolean expressions
A processing decision branch using relational operators (= ≠ > <) that returns one of two values
chained conditional statement
A series of conditionals that a computer moves through until it finds the one that is true.
argument
The values that a program provides to a function or subroutine
integer
A whole number that does not have a decimal or any digits after the decimal.
procedure
A sequence of actions or instructions to follow in solving a problem or accomplishing a task
arithmetic operator
A symbol in code that tells a computer to perform a specific math operation, such as addition, subtraction, multiplication, or division.
notifier
a non-visible component from the User Interface drawer that creates a screen popup
logical operators
used to examine the relationship between two values and determine whether the statement is true or false
(AND, OR, and NOT)