Part 1 Block 4 - More Python Programming Flashcards
1
Q
The order of operation for Boolean expression in Python is:
1 = N____________
2 = C_____________
3 = D_____________
A
1 = Negations
2 = Conjunctions
3 = Disjunctions
2
Q
What is the operator for each of the following Boolean operations?
1 = Negation n_____
2 = Conjunction a_____
3 = Disjunction o_____
A
not
and
or
3
Q
Can Boolean expression use parenthesis to change the order of operations?
A
Yes, they can!
4
Q
A