Computer Sciences > Gate 2022 > Number Representation
Consider three floating-point numbers A, B, and C stored in registers RA, RB, and RC, respectively as per IEEE-754 single-precision floating-point format. The 32-bit content stored in these registers (in hexadecimal form) is as follows.

RA= 0xC1400000
RB = 0x42100000
RC = 0x41400000

Which one of the following is FALSE?
A
A+ C= 0
B
C= A+B
C
B = 3C
D
(B-C)> 0

Explanation

Correct : b

Similar Questions

What is the worst-case time complexity of insertion in an AVL tree?
Question #23 Medium
Which operations on a binary search tree have O(h) complexity?
Question #31 Easy
Compare search complexities of sorted array vs balanced BST.
Question #47 Hard

Related Topics

Data Structures Binary Search Tree Time Complexity Algorithm Analysis Tree Algorithms Computer Science