44 44 votes The format of the single-precision floating point representation of a real number as per the $\text{IEEE 754}$ standard is as follows:$$\begin{array}{|c|c|c|} \hline \text{sign} & \text{exponent} & \text{mantissa} \\ \hline \end{array}$$Which one of the following choices is correct with respect to the smallest normalized positive number represented using the standard?exponent $=00000000$ and mantissa $=0000000000000000000000000$exponent $=00000000$ and mantissa $=0000000000000000000000001$exponent $=00000001$ and mantissa $=0000000000000000000000000$exponent $=00000001$ and mantissa $=0000000000000000000000001$ Digital Logic gatecse-2021-set2 digital-logic number-representation ieee-representation one-mark floating-point-representation + – Arjun 20.9k views answer comment Share Follow Print See all 8 Comments 8 8 Comments reply Show 5 previous comments js__ commented Oct 11, 2025 reply Follow flag CaseExponent (E)Mantissa (F)RepresentsFormulaNormalizedNot all 0s or all 1s (1 to 254)Any value"Normal" numbers(−1)S×1.F×2(E−127)DenormalizedAll 0s (0)Non-zeroVery small numbers near zero(−1)S×0.F×2−126ZeroAll 0s (0)All 0sZero±0InfinityAll 1s (255)All 0sInfinity±∞NaNAll 1s (255)Non-zeroNot a Number (e.g., 0/0)NaNNormalized: The Exponent field (E) cannot be all 0s (00000000) or all 1s (11111111). 7 7 replyShare ankit2024 commented Nov 9, 2025 reply Follow flag the circle give value for denormalized 0 0 replyShare chidambareswar23 commented Dec 1, 2025 i edited by chidambareswar23 Apr 29 reply Follow flag Also Refer :Digital Logic: GATE CSE 2008 | Question: 4Digital Logic: GATE CSE 2024 | Set 2 | Question: 4 2 2 replyShare Please log in or register to add a comment.
Best answer 29 29 votes In IEEE 754 representation all $1s$ in exponent field is reserved for special numbers $+$ (when sign bit is positive) and $-$ (when sign bit is negative) infinities when all manitssa bits are zeroes. SNAN (Signaling Not A Number): when leading mantissa bit is $0$ and at least one other mantissa bit is non-zero NAN (Quiet NAN): when leading mantissa bit is $1$ More read on QNAN vs SNAN: https://stackoverflow.com/questions/18118408/what-is-the-difference-between-quiet-nan-and-signaling-nan Also, all $0s$ for exponent field is reserved for denormalized numbers (small numbers between $0$ and $\pm1$ which cannot be represented using normalized numbers). That is, a normalized IEEE 754 represented number (both single and double precision) must have at least one bit set in the exponent field and for the smallest exponent this will be the right most bit. Now, to make it the smallest positive normalized number in single-precision format, we can have all mantissa bits $0$ which will give the numerical value as $1.\underbrace{000\dots0}_{23 \text{ zeroes}} \times 2^{1-127} = 2^{-126}.$ (Here, $1$ before "." is implied in IEEE 754 representation for every normalized numbers and $127$ is the exponent bias used to have negative exponents without an explicit sign bit) Reference: https://steve.hollasch.net/cgindex/coding/ieeefloat.html gatecse answered Apr 3, 2021 • selected Apr 3, 2021 by Arjun gatecse comment Share Follow See all 5 Comments 5 5 Comments reply Show 2 previous comments SABAREESH V commented Dec 26, 2022 reply Follow flag Answer will be 1x2^-126 Not 2^-126 @Arjun @Lakshman Patel RJIT 0 0 replyShare Abhrajyoti00 commented Jan 5, 2023 reply Follow flag @SABAREESH V What’s the difference between the two? 1 1 replyShare aashish1406 commented Jan 26, 2024 reply Follow flag @jatinmittal199510 I think it is $2^{n-1}$ ? 0 0 replyShare Please log in or register to add a comment.
30 30 votes The answer is c. In normalized form, you cannot have exponent as all one or all zero. So, to make the smallest number, make exponent one and mantissa equal to 0. So the number would become $1.0 * 2^{1-127}$ = $1.0 * 2^{-126}$ jatinmittal199510 answered Feb 18, 2021 jatinmittal199510 comment Share Follow 0 reply Please log in or register to add a comment.
6 6 votes As per the question, We should know that in normalised it is not possible to have exponents all 0’s So A and B options get eliminated from here. But Mantissa All 1’s is possible so. The answer should be C Answer:- C harish3598 answered Feb 26, 2021 harish3598 comment Share Follow 0 reply Please log in or register to add a comment.
1 1 vote Correct answer is option C ✅ and Here is the Details and Simplest Explanation Prashant-G answered Jun 25 Prashant-G comment Share Follow 0 reply Please log in or register to add a comment.
0 0 votes Ans =c Sonu123x answered Jun 28, 2025 Sonu123x comment Share Follow 0 reply Please log in or register to add a comment.