wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

L6 Data Rep

Total questions: 15

Worksheet time: 8mins

Name
Class
Date
1.

Which is the largest normalized FP value (5-bit M, 4-bit E)?

a)

00111 0111

b)

01111 0110

c)

11111 0111

d)

10111 1111

2.

Which is the smallest normalized FP value (5-bit M, 4-bit E)?

a)

01000 1000

b)

00001 1000

c)

11111 1111

d)

01000 1111

3.

How do you negate a 2s complement number?

a)

Invert bits and add one

b)

Invert bits

c)

Add one and invert bits

d)

Write it backwards

4.

How do you perform a - b in signed binary?

a)

a + (-b)

b)

a + (-1)*b

c)

a - |b|

d)

a + (b^-1)

5.

What is the absolute error of the representation of 0.7501 in fixed point binary?

a)

-0.0001

b)

0.0001

c)

0.2501

d)

0.2499

6.

What is the relative error of a binary representation of a number?

a)

absolute error / represented number (as a %)

b)

absolute error / intended number (as a %)

c)

represented number / absolute error (as a %)

d)

intended number / absolute error (as a %)

7.

Which signed binary number is most negative?

a)

10111

b)

11011

c)

11101

d)

11110

8.

Which signed binary number is the closest to zero?

a)

10111

b)

11011

c)

11101

d)

11110

9.

Divide this signed binary byte by 2: 10010010

(a)  

10.

What s__ d__ is another name for the mantissa in a floating point number?

(a)  

11.

If the mantissa is M and the exponent E, what is the value of a binary floating point number?

a)

E * 2^M

b)

M * 2^E

c)

E * 10^M

d)

M * 10^E

12.

Which of these floating point numbers is not normalised?

a)

1100 1000

b)

1000 0011

c)

0110 0111

d)

0000 1111

13.

Convert 0.345 to 6-bit fixed point binary using the doubling algorithm

a)

0.01011

b)

0.01010

c)

0.01101

d)

0.01110

14.

Why is relative error more useful than absolute error in a binary representation?

a)

Because it gives an indication of the impact/effect of the error.

b)

Because it gives an indication of the scale of the error.

c)

Because it gives an indication of the size of the error.

d)

Because it gives an indication of the cause of the error.

15.

What is the normalized floating point representation of 1664 with 5 bits for the mantissa and 5 bits for the exponent. Enter M and E as 2 binary values with a space between them.

(a)