Pascal let X be a real variable. The following expression can round x to two decimal places Let X be a real variable. The following expression can round x to two decimal places (A)round(x) (B)round(x)/100 (C)round(x*100)/100 (D)round(x*10)/10

Pascal let X be a real variable. The following expression can round x to two decimal places Let X be a real variable. The following expression can round x to two decimal places (A)round(x) (B)round(x)/100 (C)round(x*100)/100 (D)round(x*10)/10

C
You set X to a decimal
Let x = 1.1111
So a = 1
(no need to explain)
B = 0.01
(1.1111 becomes 1, divided by 100, = 0.01)
C = 1.11
(1.1111 * 100 = 111.11, rounded = 111, divided by 100, equals 1.11)
D = 1.1
(1.1111 * 10 = 11.111, rounded = 11, then divided by 10 = 1.1)
So it's C!