Chapter 1 Flashcards

1
Q

Define a Byte

A

A byte has 8 bits

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

Define a Bit

A

The smallest amount in binary. Either 1 or 0

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

Define a Nibble

A

4-bits

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

What are the numbers in a Binary Chart?

A

128, 64, 32, 16, 8, 4, 2, 1

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

What is the base of Hexidecimal

A

16 Example: 16^2, 16^1, 16^0

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

What is the base of the Octal System

A

8 Example: 8^2, 8^1, 8^0

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

What are the values and associated characters of Base64?

A

0-63; A-Z; a-z; 0-9; + / (A is 0, / is 63)

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

What are the decimal and HEX values in the Hexadecimal System?

A

Decimal: 0 through 15 Hex: 0 through F

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

Instead of memorizing the binary value of Hex values in the Hexidecimal system, what other method can be used to find the binary values?

A

There are 15 Hex values. 0-9, followed by A-F
Binary can be found using the binary chart starting from 8. Table: 8, 4, 2, 1
Example: D = 13 = 1101 because 8+4+0+1=13

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

What are the four types of memory?

A

Main, Internal, Secondary, and Tertiary

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

What types of memory make up the first three layers of the Memory Hierarchy Model?

A

Internal and Main

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

What are examples of Internal Memory?

A

Processor Register and Processor Cache

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

What does the Processor Register Do?

A

Registers provide the fastest access to memory by the CPU. This is almost instant and can happen in a single cycle of the CPU.

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

What does Cache Memory Do?

A

Is semiconductor-based memory that holds the most often-used parts of a program or instruction set for the CPU. It is the go between for the CPU and main memory.

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

What is Main Memory?

A

Primary data storage location for data in use. Includes both RAM and ROM. RAM is volatile, while ROM is non-volatile.

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

What is Secondary Memory?

A

Makes up the fourth and fifth layers of the Memory Hierarchy Model. Secondary memory data is not lost due to power outage. Examples include HDD, SDD, CD-ROM

17
Q

What is Tertiary Memory?

A

Sixth and last level of the Memory Hierarchy Model. Is mass storage of backup drives and backup tapes.