Chapter 1: Information representation Flashcards

(23 cards)

1
Q

What is Denary?

A

A base-10 number system that uses one of the symbols from 0-9 for each denary digit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Binary?

A

A base-2 number system that uses the symbols 0 and 1 to represent a binary digit. 1 binary digit is called a bit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Hexadecimal?

A

A base-16 number system that uses one of the symbols 0-9 and A-F to represent a hexadecimal digit. A-F is 10-15

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a bit?

A

A digit in the binary number system written using either of the symbols 0 and 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a byte?

A

A group of 8 bits treated as a single unit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a nibble?

A

A group of 4 bits.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the decimal prefixes from smallest to largest? (and their value)

A

kilo , mega , giga , tera. (10³ , 10⁶ , 10⁹ , 10¹² )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is one’s complement?

A

The binary number obtained by subtracting each digit in a binary number from 1. (0 and 1 are switched)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is two’s complement?

A

The one’s complement of a binary number, plus 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to convert two’s complement into denary?

A

Let the MSB be negative and all the digits to the right are added as positive numbers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the rules for binary addition?

A

0 + 0 = 0
0 + 1 = 1
1 + 1 = 10 (carry 1 over)
1 + 1 + 1 = 11(carry 1 over)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is overflow?

A

A condition when the result of a calculation is too large to fit into the number of bits defined for storage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Why overflow occurs in binary addition/subtraction?

A
  • The answer cannot be represented in the number of bits available.
  • The answer is larger than the maximum positive number that can be stored in the register
  • The answer is smaller than the most negative number that can be stored in the register
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is Binary Coded Decimal (BCD)?

A

Storage of a binary value representing one denary digit in a nibble.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is packed BCD?

A

When two BCD nibbles are stored in one byte.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the correction nibble in BCD addition?

A

0110 is added to the least significant nibble.

17
Q

What are the 3 character sets?

A

ASCII, Extended ASCII and Unicode

18
Q

Describe ASCII

A
  • uses 7 bits per character // represents 128 characters // represents all characters from the Latin alphabet.
19
Q

Describe Extended ASCII

A
  • uses 8 bits per character // represents 256 characters
20
Q

Describe Unicode

A
  • uses 16/32 bits per character // represents 65536+ characters // represents all characters in all languages
21
Q

What is a Vector graphic?

A

A graphic consisting of drawing objects defined in a drawing list.

22
Q

What is a drawing object?

A

A component defined by geometric formulae and associated properties.

23
Q

What is a drawing list?