What does the following statement do? Math.floor( Math.random() 12 );
a) This creates a random number from 0 up to and including 12.
b) This creates a random number from 0 up to but not including 12.
c) This creates a random number from 1 up to and including 12.
d) This creates a random number from 1 up to but not including 12.
Question 2
The value a in the following statement is called the ________ and the value b is called the ________. face = Math.floor( a + Math.random() b );
a) scaling factor, shifting value
b) shifting value, scaling factor
c) scaling value, shifting factor
d) shifting factor, scaling value