edited by
3,314 views
3 votes
3 votes

​​The format of a single-precision floating-point number as per the $\text{IEEE 754}$ standard is:

Sign ExponentMantissa
$(1 \mathrm{bit})$ $(8 \mathrm{bits})$ $(23 \mathrm{bits})$ 


Choose the largest floating-point number among the following options.    

  1.  
    SignExponentMantissa
    $0$ $01111111$$1111 1111 1111 1111 1111 111$
  2. Sign ExponentMantissa
    $0$$11111110$$1111 1111 1111 1111 1111 111$
  3. Sign ExponentMantissa
    $0$$11111111$$11111111111111111111111$
  4.  
    SignExponentMantissa
    $0$$01111111$$00000000000000000000000$
edited by

1 Answer

1 votes
1 votes
B.

Setting exponent as 11111110. Also mantissa will be all 1's. This combination will result in the largest FPN. Note that here the LSB is not 1. Setting all exponent bits to 1 will result in a spcl notation which is reserved in IEEE 754 format.
Answer:

Related questions

10.7k
views
3 answers
22 votes
Arjun asked Feb 18, 2021
10,675 views
The format of the single-precision floating point representation of a real number as per the $\text{IEEE 754}$ standard is as ... and mantissa $=0000000000000000000000000$exponent $=00000001$ and mantissa $=0000000000000000000000001$
22.3k
views
4 answers
45 votes
khushtak asked Feb 14, 2017
22,323 views
Given the following binary number in $32$-bit (single precision) $\text{IEEE-754}$ format : $\large 00111110011011010000000000000000$The decimal ... $1.45*10^{-1}$2.27*10^{-1}$2.27*10^1$
8.4k
views
5 answers
9 votes
Arjun asked Feb 18, 2021
8,422 views
Consider the following representation of a number in $\text{IEEE 754}$ single-precision floating point format with a bias of $127$ ... corresponding to the above representation (rounded to $2$ decimal places) is ____________.
782
views
2 answers
6 votes
GO Classes asked Feb 5
782 views
According to the IEEE standard, a 32-bit, single-precision, floating-point number $N$ is defined to be$N=(-1)^S \times 1 . F \times 2^{E-127}$where $S$ is the sign bit, ... \right) * 2^{128}$\left(1+\left(1-2^{-23}\right)\right) * 2^{128}$