(Random Numbers) Write statements that assign random integers to the variable n in the following ranges:
a) 1 ≤ n ≤2
b) 1 ≤ n ≤100
c) 0 ≤ n ≤9
d) 1000 ≤ n ≤1112
e) -1≤ n ≤1
f) -3≤ n ≤11
(ii) (Random Numbers) write a single statement that prints a number at random from each of the following sets:
a) 2, 4, 6, 8, 10
b) 3, 5, 7, 9, 11
c) 6, 10, 14, 18, 22
Hint: rand( ) in gives a random integer between 0 and RAND_MAX, use % (modulus) operator to limit the range of random numbers generated.