7.1 Introduction to Computer Architecture Flashcards

1
Q

What is computer architecture?

A

It is the set of hardware resources provided for software, including components such as the CPU, main memory, and I/O interfaces.

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

What are the primary hardware components in computer architecture?

A

They include the Central Processing Unit (CPU), main memory (address space), and I/O interfaces (buses, clocks, and interface registers).

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

What is an address space in computing?

A

An address space is the range of memory addresses that a CPU or process can access; it includes physical address space (actual locations in RAM) and virtual address space (a logical view translated by the operating system).

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

How is memory typically organized in a computer system?

A

Memory is organized into fixed-size, addressable storage locations—usually 8 bits (1 byte) per location—with address spaces defined by the number of address lines (e.g., 32-bit or 64-bit systems).

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

What role does the address bus play in computer architecture?

A

The address bus carries memory addresses (typically represented in hexadecimal) and determines the maximum range of accessible memory.

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

What is the function of the CPU in a computer system?

A

The CPU executes instructions by fetching data from memory, performing operations via the Arithmetic Logic Unit (ALU), and storing results back into memory, all under the direction of the Control Unit (CU).

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

What does the Control Unit (CU) do within the CPU?

A

The CU directs all CPU activities, coordinating the fetching, decoding, and execution of instructions much like a conductor directs an orchestra.

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

What is the purpose of the Arithmetic Logic Unit (ALU)?

A

The ALU performs arithmetic and logical operations (such as addition, subtraction, bitwise AND/OR) on operands provided by registers or memory.

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

What are registers and why are they important?

A

Registers are small, high-speed memory units within the CPU that temporarily hold data and instructions during processing, enabling fast access compared to main memory.

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

What is an instruction set?

A

An instruction set is the fixed collection of operations that a CPU can perform, including arithmetic, logical, and data movement instructions.

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

What defines a stored-program computer?

A

A stored-program computer holds both data and code in memory, allowing programs—represented as sequences of numeric instructions—to be modified and executed sequentially.

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

What is machine language?

A

Machine language is the binary encoding of instructions that a CPU executes directly, where each instruction is represented by an opcode and possibly operand data.

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

How might a fixed-length instruction be structured in machine language?

A

For example, a 12-bit instruction could reserve the lower 8 bits for addresses or data and the upper 4 bits for the opcode, with bit positions defined by significance (LSb and MSb).

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

What are the advantages and disadvantages of programming in machine language?

A

Advantages include direct control over hardware and potential for optimization; disadvantages include tedious coding, high potential for error, low productivity, maintenance challenges, and poor portability.

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

How are high-level programming languages translated into machine-executable code?

A

High-level languages are converted into assembly code via a compiler or interpreter, and an assembler then translates the assembly code into machine language for execution by the CPU.

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