Which one of the following declaration statements is not a value type?

a. decimal gross Pay = 0.0m;
b. int player Score = 0;
c. bool qualify = false;
d. Random rand = new Random();

d. Random rand = new Random();

Computer Science & Information Technology

You might also like to view...

What is the final value of x after performing the following operations?

int x{21}; double y{6}; double z{14}; y = x / z; x = 5.5 * y; a. 8.25. b. 5.5. c. 5. d. 8.

Computer Science & Information Technology

Plus (+) and minus (-) have the highest order of precedence in the order of operations.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology