Conditionals Flashcards
1
Q
If statements
A
Allows you to write programs that do different things depending on values assigned to variables
2
Q
cond
A
A function that has the ability to produce different results based on multiple boolean tests
3
Q
else
A
If all the test statements of the cond are false, the code attached to else will run.
4
Q
recursive
A
A function that calls itself