encoding non-numeric data Flashcards

1
Q

What is the fundamental unit of computer memory?

A

A long string of bits.

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

Why do we group bits into chunks?

A

to efficiently represent larger pieces of data like numbers, characters, or instructions within a computer system

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

What is the smallest useful chunk of memory?

A

1 byte (8 bits).

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

What are common fixed-length binary number sizes?

A

8-bit, 16-bit, 32-bit, and 64-bit.

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

What is the total number of values an n-bit binary number can store?

A

2^n values.

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

What is the range of an 8-bit unsigned number?

A

0 to 255 (2^8 - 1).

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

What happens if an 8-bit binary number overflows?

A

It results in an unsigned overflow error.

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

How do we convert long binary numbers into shorthand notation?

A

By grouping them into 4-bit (hex) or 3-bit (octal) chunks.

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

What is endianness in memory storage?

A

It defines the order in which bytes are stored in memory.

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

Why do computers store non-numeric data?

A

To encode text, images, and logic operations.

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

What is ASCII?

A

A 7-bit character encoding standard with 128 unique values.

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

What is Unicode?

A

An extended character encoding standard supporting multiple languages.

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

What is UTF-8?

A

A Unicode encoding format that uses variable-length encoding.

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

How are Boolean values represented in memory?

A

Using 1 bit (0 for False, 1 for True) but often stored in entire bytes.

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

What are the primary components of color in digital images?

A

Red, Green, and Blue (RGB).

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

How many colors can be represented in an 8-bit color system?

A

256 colors.

17
Q

What is the color depth of 24-bit color?

A

16,777,216 colors (True color).

18
Q

When referring to little-endian, where do we start our ordering?

A

We start at the Least siginificant Byte (LSB) first going from right to left for example in the 32-bit integer 0A0B0C0D, we start at 0D, 0C, …

19
Q

When referring to Big-endian, where do we start our ordering?

A

We start at the most significant Byte (MSB) and move from left to right, for example in the 32-bit integer 0A0B0C0D, we would start with 0A, 0B, …

20
Q

For uppercase characters in ASCII, what decimal do we start and end at?

A

we start at 65 and end at 90
(‘A’ is encoded as 65)

21
Q

For Lowercase letters, what decimal do we start at and what decimal do we end at?

A

we start 97 and end at 122
(‘a’ is encoded as 97)

22
Q

In ASCII, when converting from lowercase to uppercase (of the same letter), what do we do to get the uppercase decimal?

A

subtract 32

23
Q

In ASCII, when converting from uppercase to lowercase (of the same letter), what do we do to get the lowercase decimal?

24
Q

Difference between ASCII and Unicode

A

ASCII: 7-bit encoding, supports 128 characters.
Unicode: Supports thousands of characters across different languages, using UTF-8, UTF-16, or UTF-32 encoding.