What is a variable?
a named reference to a value that can be used throughout a program.
What is a string?
a sequence of characters.
Can local or global variables be used anywhere in a program?
Global.
What is string concatenation?
Joining two or more strings together.
What operator do you use to concatenate strings?
+
What values can Boolean have?
True or False
What is 5 MOD 10?
5
What is 5 MOD 5?
0
What is 5 MOD 3?
2
What is the comparison operator to check for equal?
==
What is the variable assignment operator?
=
What does the comparison operator! = mean?
not equal to.
What would the expression (3 < 2) || (10 > 5) evaluate to?
True.
What would the expression (3 >= 2) && (10 == 5) evaluate to?
False.