10) The inputs to a function are called:
A) identifiers
B) parameters
C) values
D) algorithms
11) The random numbers generated by Math.random( ):
A) will never be repeated
B) are really pseudo-random
C) are random because the computer is deterministic
D) are negative numbers
12) The values returned by the Math.random( ) function are between:
A) 0 (inclusive) and 1 (exclusive)
B) 0 (exclusive) and 1 (inclusive)
C) 0 (exclusive) and 1 (exclusive)
D) 0 (inclusive) and 1 (inclusive)
13) Radio buttons belong to groups in which, if one is checked, any others are unchecked. How
do you know which buttons are in the same group?
A) They are placed on the same line of the HTML file.
B) They have the same name.
C) They are part of the same form.
D) The are enclosed in a <radiogroup>…</radiogroup> tag pair.
14) After running the JavaScript:
var d = new Date();
var t = d.getTime();
the variable t contains
A) the number of milliseconds since the current web page was downloaded.
B) the number of days since the beginning of 1990, US Pacific time zone.
C) a string giving the current date and time, with the seconds given to three decimal places.
D) the number of milliseconds since the beginning of 1970 in Greenwich, England.
1) Inputs to a function are known as ________.
2) The ________ is the algorithm written in a programming language.