Section 1 & 2
____________________ is used for data values that are made up of
ordered sequences of characters, such as "hello world". - a string
_______________________returns the remainder of a division of one
number by another - modulus operator
_________________are commonly used in computer programs to organize
data so that a related set of values can be easily sorted or searched. -
Array
_______________is a data type with two possible values: true or false. -
boolean
a name assigned to an element in a program. Example, name of a variable,
function, etc. - Identifier
A program needs to keep track of the number of TVs available for sale. -
Use an integer
A program needs to keep track of whether a person's airline ticket is
confirmed or not. - Use a boolean
A program needs to store a list of people waiting to buy concert tickets. -
Use a string array