selection Flashcards
(9 cards)
1
Q
what does == mean
A
equal to
2
Q
what does <= mean
A
less or equal to
3
Q
what does < mean
A
less than
4
Q
what does > mean
A
more than
5
Q
what does >= mean
A
more or equal to
6
Q
what does <> or != mean
A
not equal to
7
Q
how many times is “if” used in selection?
A
once at the start
8
Q
how many times is “else” used in selection?
A
once at the end
9
Q
when is “elif” used?
A
its used when a second selection is made with the same variable and can be used multiple times.