M3: Operators Flashcards
1
Q
use to perform arithmetic sequence
A
arithmetic operators
2
Q
used to assign values to variables: = assign, +add, -subtract, *-multiply, / divide, % modulos (remainder)
A
assignment operators
3
Q
used to assign values to variables for “condition” : = rqual to, ==equal equal, !not
A
relational operators
4
Q
used with boolean: and/or/not
A
logical operators
5
Q
true if both values are true, if not then false
A
AND
6
Q
false if the statements are both false, true if not
A
OR
7
Q
true if the value is false, vice versa
A
NOT