computer_architecture_flashcards

1
Q

What are the main functional units of a computer?

A

Processor(s), Main memory, I/O units.

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

What is the purpose of the processor?

A

Executes instructions, performs arithmetic and logic operations, and controls other components.

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

What is the purpose of main memory?

A

Stores data and instructions temporarily for quick access by the processor.

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

What is the purpose of I/O units?

A

Allow the computer to communicate with external devices such as keyboards, monitors, and storage devices.

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

What is the function of bus lines?

A

Transmit data, addresses, and control signals between different components of a computer.

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

What is an operating system?

A

A software that manages computer hardware and software resources and provides services for applications.

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

What is the Von Neumann architecture?

A

A computer architecture where both data and instructions are stored in a single read/write memory.

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

What are the key components of the Von Neumann architecture?

A

CPU, main memory, input/output devices, and a system bus.

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

What is the Fetch-Execute Cycle?

A

The process where the CPU fetches an instruction, decodes it, executes it, and then stores the result.

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

What is cache memory?

A

A small, fast memory located close to the CPU that stores frequently accessed data to speed up processing.

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

What is the memory hierarchy?

A

The structure of memory storage levels in a computer, ranging from registers (fastest) to secondary storage (slowest).

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

What is main memory also known as?

A

RAM (Random Access Memory).

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

What is the primary characteristic of main memory?

A

It is volatile; data is lost when power is turned off.

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

What is secondary memory?

A

Non-volatile storage used for long-term data retention, such as hard drives and SSDs.

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

What are the advantages of a bus system?

A

Versatility (easy to add new components) and low cost (shared connection).

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

What are the disadvantages of a bus system?

A

Potential communication bottlenecks and limited bandwidth.

17
Q

What is a register?

A

A small amount of high-speed memory within the CPU used for immediate data access.

18
Q

What are some types of special registers?

A

Program Counter, Stack Pointer.

19
Q

What is a cache hit?

A

When the CPU successfully retrieves data from the cache instead of slower main memory.

20
Q

What is a cache miss?

A

When the required data is not found in the cache and must be fetched from main memory.

21
Q

What is L1 cache?

A

A small, very fast cache memory located directly on the processor chip.

22
Q

What is L2 cache?

A

A larger, slightly slower cache memory that stores frequently used data for the CPU.

23
Q

What is a bus transaction?

A

A process where the bus sends an address and either receives or sends data.

24
Q

What is the difference between polling and interrupts?

A

Polling continuously checks device status, while interrupts notify the CPU only when needed.

25
Q

What are the two types of multiplexing in OS resource sharing?

A

Time multiplexing and space multiplexing.