Digital Signal Processing

Representation of Numbers

Question 1
Marks : +2 | -2
Pass Ratio : 100%
The binary digit b-A is called as ______________
LSB
Total value
MSB
None of the mentioned
Explanation:
Since the binary digit b-A is the first bit in the representation of the real number, it is called as the most significant bit(MSB) of the number.
Question 2
Marks : +2 | -2
Pass Ratio : 100%
Due to non-uniform resolution, the corresponding error in a floating point representation is proportional to the number being quantized.
True
False
Explanation:
In floating point representation, the mantissa is either rounded or truncated. Due to non-uniform resolution, the corresponding error in a floating point representation is proportional to the number being quantized.
Question 3
Marks : +2 | -2
Pass Ratio : 100%
If (101.01)2=(x)10, then what is the value of x?
505.05
10.101
101.01
5.25
Explanation:
(101.01)2=1*22+0*21+1*20+0*2-1+1*2-2=(5.25)10
Question 4
Marks : +2 | -2
Pass Ratio : 100%
Which of the following is the correct representation of a floating point number X?
2E
M.2E(1/2<M<1)
2M.2E(1/2<M<1)
None of the mentioned
Explanation:
The binary floating point representation commonly used in practice, consists of a mantissa M, which is the fractional part of the number and falls in the range 1/2<M<1, multiplied by the exponential factor 2E, where the exponent E is either a negative or positive integer. Hence a number X is represented as X= M.2E(1/2<M<1).
Question 5
Marks : +2 | -2
Pass Ratio : 100%
What is the mantissa and exponent respectively obtained when we add 5 and 3/8 in binary float point representation?
0.101010,011
0.101000,011
0.101011,011
0.101011,101
Explanation:
We can represent the numbers in binary float point as
Question 6
Marks : +2 | -2
Pass Ratio : 100%
If E=255 and M≠0, then which of the following statement is true about X?
Not a number
Infinity
Defined
Zero
Explanation:
According to the IEEE 754 standard, for a 32-bit machine, single precision floating point number is represented as X=(-1)s.2E-127(M).
Question 7
Marks : +2 | -2
Pass Ratio : 100%
The binary point between the digits b0 and b1 exist physically in the computer.
True
False
Explanation:
The binary point between the digits b0 and b1 does not exist physically in the computer. Simply, the logic circuits of the computer are designed such that the computations result in numbers that correspond to the assumed location of this point.
Question 8
Marks : +2 | -2
Pass Ratio : 100%
What are the mantissa and exponent required respectively to represent ‘5’ in binary floating point representation?
011,0.110000
0.110000,011
011,0.101000
0.101000,011
Explanation:
We can represent 5 as
Question 9
Marks : +2 | -2
Pass Ratio : 100%
What is the binary equivalent of (-3/8)?
(10011)2
(0011)2
(1100)2
(1101)2
Explanation:
The number (-3/8) is stored in the computer as the 2’s complement of (3/8)
Question 10
Marks : +2 | -2
Pass Ratio : 50%
What is the range of round-off error for a foxed point representation?
[-0.5(2-b+2-bm), 0.5(2-b+2-bm)]
[0, (2-b+2-bm)]
[0, (2-b-2-bm)]
[-0.5(2-b-2-bm), 0.5(2-b-2-bm-bm)]
Explanation:
The round-off error is independent of the type of fixed point representation. The maximum error that can be introduced through rounding is 0.5(2-b+2-bm) and this can be either positive or negative, depending on the value of x. Therefore, the round-off error is symmetric about zero and falls in the range