Digital Signal Processing Representation of Number MCQ Quiz – Objective Question with Answer for Digital Signal Processing Representation of Number MCQ

1. If (101.01)2=(x)10, then what is the value of x?

A. 505.05
B. 10.101
C. 101.01
D. 5.25

Answer: D

(101.01)2=1*22+0*21+1*20+0*2-1+1*2-2=(5.25)10
=>x=5.25.

 

2. If X is a real number with ‘r’ as the radix, A is the number of integer digits and B is the number of fraction digits, then X=\(\sum_{i=-A}^B b_i r^{-i}\).

A. True
B. False

Answer: A

A real number X can be represented as X=\(\sum_{i=-A}^B b_i r^{-i}\) where bi represents the digit, ‘r’ is the radix or base, A is the number of integer digits, and B is the number of fractional digits.

 

3. The binary point between the digits b0 and b1 exists physically in the computer.

A. True
B. False

Answer: B

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.

 

4. What is the resolution to cover a range of numbers xmax-xmin with ‘b’ number of bits?

A. (xmax+xmin)/(2b-1)
B. (xmax+xmin)/(2b+1)
C. (xmax-xmin)/(2b-1)
D. (xmax-xmin)/(2b+1)

Answer: C

A fixed point representation of numbers allows us to cover a range of numbers, say, xmax-xmin with a resolution

Δ=(xmax-xmin)/(m-1)

where m=2b is the number of levels and ‘b’ is the number of bits.

 

5. What are the mantissa and exponent required respectively to represent ‘5’ in binary floating-point representation?

A. 011,0.110000
B. 0.110000,011
C. 011,0.101000
D. 0.101000,011

Answer: D

We can represent 5 as
5=0.625*8=0.625*23
The above number can be represented in binary float point representation as 0.101000*2011
Thus Mantissa=0.101000, Exponent=011.

 

6. If the two numbers are to be multiplied, the mantissa is multiplied and the exponents are added.

A. True
B. False

Answer: A

Let us consider two numbers X=M.2E and Y=N.2F
If we multiply both X and Y, we get X.Y=(M.N).2E+F
Thus if we multiply two numbers, the mantissa is multiplied and the exponents are added.

 

7. What is the smallest floating-point number that can be represented using a 32-bit word?

A. 3*10-38
B. 2*10-38
C. 0.2*10-38
D. 0.3*10-38

Answer: D

Let the mantissa be represented by 23 bits plus a sign bit and let the exponent be represented by 7 bits plus a sign bit.

Thus, the smallest floating-point number that can be represented using the 32-bit number is
(1/2)*2-127 = 0.3*10-38

Thus, the smallest floating-point number that can be represented using the 32-bit number is
(1-2-23)*2127 = 1.7*1038.

 

8. If 0<E<255, then which of the following statement is true about X?

B. Infinity
C. Mixed number
D. Zero

Answer: C

According to the IEEE 754 standard, for a 32-bit machine, a single-precision floating-point number is represented as X=(-1)s.2E-127(M).
From the above equation, we can interpret that,
If 0<E<255, then X=(-1)s.2E-127(1.M)=>X is a mixed number.

 

9. For a twos complement representation, the truncation error is _________

A. Always positive
B. Always negative
C. Zero
D. None of the mentioned

Answer: B

For a two’s complement representation, the truncation error is always negative and falls in the range
-(2-b-2-bm) ≤ Et ≤ 0.

 

10. Due to non-uniform resolution, the corresponding error in a floating-point representation is proportional to the number being quantized.

A. True
B. False

Answer: A

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.

 

11. What is the binary equivalent of (-3/8)?

A. (10011)2
B. (0011)2
C. (1100)2
D. (1101)2

Answer: D

The number (-3/8) is stored in the computer as the 2’s complement of (3/8)
We know that the binary equivalent of (3/8)=0011
Thus the two’s complement of 0011=1101.

 

12. Which of the following is the correct representation of a floating-point number X?

A. 2E
B. M.2E(1/2<m<1)
C. 2M.2E(1/2<m<1)
D. None of the mentioned

Answer: B

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).

 

13. What is the mantissa and exponent respectively obtained when we add 5 and 3/8 in binary float point representation?

A. 0.101010,011
B. 0.101000,011
C. 0.101011,011
D. 0.101011,101

Answer: C

We can represent the numbers in binary float point as
5=0.101000(2011)
3/8=0.110000(2101)=0.000011(2011)
=>5+3/8=(0.101000+0.000011)(2011)=(0.101011)(2011)
Therefore mantissa=0.101011 and exponent=011.

 

14. What is the largest floating-point number that can be represented using a 32-bit word?
A. 3*1038
B. 1.7*1038
C. 0.2*1038
D. 0.3*1038

Answer: B

Let the mantissa be represented by 23 bits plus a sign bit and let the exponent be represented by 7 bits plus a sign bit.

 

15. If E=0 and M=0, then which of the following statement is true about X?

A. Not a number
B. Infinity
C. Defined
D. Zero

Answer: D

According to the IEEE 754 standard, for a 32-bit machine, a single-precision floating-point number is represented as X=(-1)s.2E-127(M).
From the above equation, we can interpret that,
If E=0 and M=0, then the value of X is 0.

 

16. The truncation error for the sign-magnitude representation is symmetric at about zero.

A. True
B. False

Answer: A

The truncation error for the sign-magnitude representation is symmetric at about zero and falls in the range
-(2-b-2-bm) ≤ Et ≤ (2-b-2-bm).

 

17. What is the range of round-off error for a foxed point representation?

A. [-0.5(2-b+2-bm), 0.5(2-b+2-bm)]
B. [0, (2-b+2-bm)]
C. [0, (2-b-2-bm)]
D. [-0.5(2-b-2-bm), 0.5(2-b-2-bm-bm)]

Answer: D

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 at about zero and falls in the range

[-0.5(2-b-2-bm), 0.5(2-b-2-bm-bm)]

 

18. What is the 2’s complement of (1100)2?

A. (0100)2
B. (0011)2
C. (0111)2
D. (1100)2

Answer: A

The one’s complement of (1100)2 is (0011)2. Thus the two complements of this number are obtained as (0011)2+(0001)2=(0100)2.

 

19. The binary digit b-A is called as ______

A. LSB
B. Total value
C. MSB
D. None of the mentioned

Answer: C

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.

 

20. If E=255 and M≠0, then which of the following statement is true about X?

A. Not a number
B. Infinity
C. Defined
D. Zero

Answer: A

According to the IEEE 754 standard, for a 32-bit machine, a single-precision floating-point number is represented as X=(-1)s.2E-127(M).
From the above equation, we can interpret that,

If E=255 and M≠0, then X is not a number.

 

21. When the frequency band is selected we can specify the sampling rate and the characteristics of the pre-filter, which is also called as __________ filter.

A. Analog filter
B. Anti-aliasing filter
C. Analog & Anti-aliasing filter
D. None of the mentioned

Answer: B

Once the desired frequency band is selected we can specify the sampling rate and the characteristics of the pre-filter, which is also called an anti-aliasing filter. The anti-aliasing filter is an analog filter that has a twofold purpose.

 

22. What are the main characteristics of an Anti-aliasing filter?

A. Ensures that the bandwidth of the signal to be sampled is limited to the frequency range
B. To limit the additive noise spectrum and other interference, which corrupts the signal
C. All of the mentioned
D. None of the mentioned

Answer: C

The anti-aliasing filter is an analog filter that has a twofold purpose. First, it ensures that the bandwidth of the signal to be sampled is limited to the desired frequency range.

Using an antialiasing filter is to limit the additive noise spectrum and other interference, which often corrupts the desired signal. Usually, additive noise is wideband and exceeds the bandwidth of the desired signal.

 

23. In general, a digital system designer has better control of tolerances in a digital signal processing system than an analog system designer who is designing an equivalent analog system.

A. True
B. False

Answer: A

Analog signal processing operations cannot be done very precisely either since electronic components in analog systems have tolerances and introduce noise during their operation. In general, a digital system designer has better control of tolerances in a digital signal processing system than an analog system designer who is designing an equivalent analog system.

 

24. The selection of the sampling rate Fs=1/T, where T is the sampling interval, not only determines the highest frequency (Fs/2) that is preserved in the analog signal but also serves as a scale factor that influences the design specifications for digital filters.

A. True
B. False

Answer: A

Once we have specified the pre-filter requirements and have selected the desired sampling rate, we can proceed with the design of the digital signal processing operations to be performed on the discrete-time signal.

The selection of the sampling rate Fs=1/T, where T is the sampling interval, not only determines the highest frequency (Fs/2) that is preserved in the analog signal but also serves as a scale factor that influences the design specifications for digital filters and any other discrete-time systems through which the signal is processed.

 

25. What is the configuration of system for digital processing of an analog signal?

A. Analog signal|| Pre-filter -> D/A Converter -> Digital Processor -> A/D Converter -> Post-filter

B. Analog signal|| Pre-filter -> A/D Converter -> Digital Processor -> D/A Converter -> Post-filter

C. Analog signal|| Post-filter -> D/A Converter -> Digital Processor -> A/D Converter -> Pre-filter

D. None of the mentioned

Answer: B

The anti-aliasing filter is an analog filter that has a twofold purpose.
Analog signal|| Pre-filter -> A/D Converter -> Digital Processor -> D/A Converter -> Post-filter

 

26. In DM further, the two integrators at encoding are replaced by one integrator placed before the comparator, and then such system is called?

A. System-delta modulation
B. sigma-delta modulation
C. Source-delta modulation
D. None of the mentioned

Answer: B

In DM, Furthermore, the two integrators at the encoder can be replaced by a single integrator placed before the comparator. This system is known as sigma-delta modulation (SDM).

Scroll to Top