Topic 2 Flashcards

1
Q

simple conditional statements use …
compound conditional statements use …

A

if
if, and/or operators (boolean logic)

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

hungry … eval (input(“Are you hungry (True/False)?”))
if hungry … True

A

=

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

control flow can use

A

if, elif, else

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

2 types of loops and when you use them

A

for - know number of iterations
while - unbounded number of iterations

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

use of breaks

A

immediately terminates loop
skips remaining expressions in code block
exits only inner most loop

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

if

A

if condition is true, run this block of code

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

elif

A

else if these conditions are true, run this block of code

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

else

A

f none of the above are true, run this block of code

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

for

A

known number of iterations, can end early with a break condition

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

while

A

unbounded number of iterations but know a break condition

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

%

A

used to find remainder of division

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