programming concepts 003 Flashcards
1
Q
What is a mathematical operator?
A
A Mathematical Operator is simply the symbol you put between different numeric values to return a different number.
Think about addition, the “operator” here is the plus sign “+”.
2
Q
What is a boolean operator?
A
A boolean operator is used when we are comparing boolean values
3
Q
What is a boolean value?
A
Is a data type that has two possible values (usually true or false)
4
Q
What is set theory?
A
-∪ = AND
-∩ = OR
-A’ = NOT A
5
Q
A