Conditionals Flashcards

1
Q

If statements

A

Allows you to write programs that do different things depending on values assigned to variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

cond

A

A function that has the ability to produce different results based on multiple boolean tests

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

else

A

If all the test statements of the cond are false, the code attached to else will run.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

recursive

A

A function that calls itself

How well did you know this?
1
Not at all
2
3
4
5
Perfectly