Digital Data Flashcards

1
Q

what is ASCII Code (7-bit)

A

original 7-bit ASCII code table used 7 bits to rep text and 128 character in table

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

what is extended ASCII Code (8-bit)

A

8-bit table contains 256 characters and makes use of the 8th bit in a byte.

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

What is unicode

A

Character encoding standard created to solve problem of limitations of ASCII.
Characters are called code points

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

What is hexadecimal

A

numbering system uses the base 16.
hex values expressed as digits 0-9 and letters A-F giving sixteen possibilities

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

How can you use hexadecimal

A

simplify long binary paterns

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

How to convert binary pattern to hexadecimal

A
  1. Split binary pattern into 4-bit groups
  2. Establish denary value for each group
  3. Convert from denary to hexadecimal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is One’s complement

A

can be used to represent a binary number; when using one’s complement, each bit is inverted, so a 1 bit changes to a 0 bit, and each 0 bit is changed to a 1 bit.

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

What is two’s complement

A

method of representing signed numbers in a computer system.

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