Given Values :-
RX = 0×C1100000 = 1100 0001 0001 0000 0000 0000 0000 0000
IEEE 754 Single Precision Format (32-bit) –
| Sign (1 bit ) | Biased Exponent ( 8 bits ) | Mantissa ( 23 bits ) |
| 1 | 100 0001 0 | 001 0000 0000 0000 0000 0000 |
Biased Exponent (E) = (10000010)2 = 130
Actual Exponent (e) = Biased Exponent (E) – Bias (127 for single precision) = 130 - 127 = 3
Mantissa (M) = 001 0000 0000 0000 0000 0000
We Know that :-
Actual number( N ) = (-1)S X (1.M) X 2e |
Actual Number = (-1)1 X 1.00100000000000000000000 X 23 = -9
Similarly
RY = 0×40C00000 = 0100 0000 1100 0000 0000 0000 0000 0000
Sign = 0 ( Positive )
Biased Exponent (E) = (10000001)2 = 129
Actual Exponent (e) = 129 - 127 = 2
Mantissa (M) = 10000000000000000000000
Actual Number = (-1)0 X 1.10000000000000000000000 X 22 = 6
Finally
RZ= 0×41400000 = 0100 0001 0100 0000 0000 0000 0000 0000
Sign = 0 ( Positive )
Biased Exponent(E) = (10000010)2 = 130
Actual Exponent (e) = 130 - 127 = 3
Mantissa (M) = 10000000000000000000000
Actual Number = (-1)0 X 1.10000000000000000000000 X 23 = 12
Now verify all options
A) 4 (X + Y ) + Z =0 Substitute X = −9 , Y = 6 , and Z = 12:
4( −9 + 6 ) + 12 = 4 ( −3 ) + 12 = −12 + 12 = 0
B) 2 Y − Z = 0 Substitute Y = 6 and Z = 12:
2( 6 ) − 12 = 12 − 12 = 0
C) 4 X + 3 Z = 0 Substitute X=−9 and Z=12:
4( −9 ) + 3 ( 12 ) = − 36 + 36 = 0
D) X + Y + Z = 0 Substitute X = −9 , Y = 6 , and Z = 12:
−9 + 6 + 12 = −9 + 18 = 9
A, B, C are correct