Computer Sciences > GATE 2021 SET-2 > IEEE 754
The format of the single-precision floating-point representation of a real number as per the IEEE 754 standard is as follows:
Which one of the following choices is correct with respect to the smallest normalized positive number represented using the standard?
A
exponent = 0000000 and mantissa = 00000000000000000000000
B
exponent = 0000000 and mantissa = 00000000000000000000001
C
exponent = 00000001 and mantissa = 00000000000000000000000
D
exponent = 00000001 and mantissa = 00000000000000000000001

Explanation

Correct : c

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