wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

CSF U4 Data p1

Total questions: 13

Worksheet time: 10mins

Name
Class
Date
1.

Overflow errors can be avoided completely with a long enough binary number?

a)

TRUE

b)

FALSE

2.

The range of an unsigned 8 bit binary number is

a)

0-128

b)

1-127

c)

0-255

d)

0-256

3.

Given an 8 bit binary number where 5 bits represent the whole number and 3 bits represent the fraction. What would 01100110 be in decimal?

a)

25.25

b)

12.5

c)

25.5

d)

12.75

4.

Rounding errors...

a)

Only happen in binary number systems

b)

Happen when we try to represent a number that is too precise

c)

Can generally be made better by adding more fractional bits

d)

Happen when we try to represent a number that is too large

5.

How would you represent the decimal number -20 using an 8 bit binary number with a sign bit?

(a)  

6.

Two's complement is used to represent negative numbers instead of a sign bit because?

a)

It is easier for humans to read

b)

There is only one representation for zero

c)

Subtraction can be simply computed

d)

The entire range capacity of the number can be used

7.

Convert the two's complement binary number 11110101 to decimal.

a)

12

b)

-11

c)

-20

d)

-15

8.

The range of a 8 bit twos complement number is...

a)

-128 to 128

b)

0 to 255

c)

-127 to 128

d)

-128 to 127

9.

How many bits are required to represent the entire ASCII character set?

a)

6

b)

7

c)

8

d)

9

10.

If the ASCII code for the letter P is hex 50 what would the the letter N be in hex?

a)

49

b)

48

c)

4F

d)

4E

11.

Which is true regarding Unicode?

a)

It is a larger character set than ASCII

b)

It represents characters in almost all languages

c)

It shares the same character codes as ASCII

d)

It can be used to represent Emoji characters

12.

UTF-8 is...

a)

An encoding scheme for Unicode

b)

Used only for ASCII characters

c)

A variable length encoding scheme

d)

Is backwardly compatible with ASCII

13.

Given the following UTF-8 binary, how many characters are represented?

a)

1

b)

2

c)

3

d)

4

e)

5