Which logical operator represents assignment?
=
==
!=
What would be the result of 9 MOD 2?
1
4
3
What is the result of 10 DIV 3?
30
What is an array?
A data structure that holds one or more items of data
A variable with more than one value
A variable with more than one data type
Which logical operator represents greater than?
<
>
>=
Which are the Boolean operators?
<, > and =
TRUE and FALSE
AND, OR and NOT
What two properties are required to declare an array?
Identifier and data type
Identifier and size
Data type and size
Which of the following statements would return the value of the third element in an array named scores?
scores[4]
scores[3]
scores[2]
What is a dynamic array?
An array where the size is not declared
An array where the data type is not declared
An array where the identifier is not declared
In what way does a record differ from an array?
A record cannot be deleted, but an array can be
The values in a record cannot change, but the values in an array can change
A record holds values of different data types, whereas the values in an array are of the same data type