Processor Fundamentals Flashcards

1
Q

What is the key realization behind the Von Neumann architecture?

A

Data and programs are indistinguishable and can be stored in the same memory.

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

How many processors does the Von Neumann architecture use?

A

A single processor.

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

What sequence of operations does the CPU follow in the Von Neumann architecture?

A

Fetch → Decode → Execute.

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

What is a register in a CPU?

A

A small, fast storage unit used for temporary data storage.

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

What are general-purpose registers used for?

A

Temporarily storing data values from memory or processed results.

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

What is the function of the Program Counter (PC)?

A

Holds the address of the next instruction to be fetched.

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

What does the Memory Data Register (MDR) do?

A

Holds the data value fetched from memory.

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

What does the Memory Address Register (MAR) store?

A

The address of the memory location to be accessed.

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

What is the role of the Accumulator (ACC)?

A

Stores values being processed by arithmetic & logic operations.

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

What does the Index Register (IX) do?

A

Stores a number used to modify an address value.

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

What is the function of the Current Instruction Register (CIR)?

A

Stores the fetched instruction for decoding & execution.

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

What does the Status Register hold?

A

Results of comparisons and intermediate or error results of arithmetic operations.

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

What is the Arithmetic and Logic Unit (ALU) responsible for?

A

Performing arithmetic and logical operations.

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

What does the Control Unit (CU) do?

A

Fetches, decodes, and synchronizes execution of instructions.

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

What is Immediate Access Store (IAS)?

A

Memory directly accessible by the CPU.

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

What is the purpose of the System Clock?

A

Synchronizes all CPU operations using pulses.

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

What is a bus in a computer system?

A

A set of parallel wires that transfer data between components.

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

What is the function of the Data Bus?

A

Transfers data between the processor, memory, and I/O devices (Bidirectional).

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

What does the Address Bus do?

A

Carries memory addresses from the processor to the MAR (Unidirectional).

20
Q

What is the Control Bus used for?

A

Transmits control signals to avoid conflicts between components (Bidirectional).

21
Q

How does Clock Speed affect CPU performance?

A

Higher clock speed means more instructions executed per second, improving performance.

22
Q

Why is there a limit to increasing Clock Speed?

A

Higher speeds generate more heat, which can cause overheating

23
Q

How does increasing Bus Width improve performance?

A

Allows more bits to be transferred simultaneously, increasing speed.

24
Q

What is Cache Memory used for?

A

Stores frequently used instructions to reduce access time and improve performance.

25
Q

How do multiple cores improve CPU performance?

A

Each core can process separate instructions simultaneously, improving efficiency.

26
Q

What is the function of a Port in a CPU?

A

Provides a physical interface between the CPU and peripheral devices.

27
Q

What type of devices can be connected via a USB port?

A

Both input and output devices.

28
Q

What type of devices can be connected via an HDMI port?

A

Only output devices like monitors (transmits video & audio).

29
Q

What is the main limitation of VGA ports?

A

They only transmit video, not audio.

30
Q

What happens in the Fetch stage?

A

The CPU fetches the next instruction from memory.

31
Q

What happens in the Decode stage?

A

The CPU identifies the opcode and operand of the instruction.

32
Q

What happens in the Execute stage?

A

The instruction is executed using control signals.

33
Q

What is an Interrupt?

A

A signal from a program or device requesting the CPU’s attention.

34
Q

What happens when a high-priority interrupt occurs?

A

CPU saves current process, executes Interrupt Service Routine (ISR), then resumes execution.

35
Q

Where does the CPU check for pending interrupts?

A

The Interrupt Register.

36
Q

What is Assembly Language?

A

A low-level programming language using mnemonics for machine instructions.

37
Q

What is Machine Code?

A

The binary representation of instructions understood by the processor.

38
Q

How does an Assembler work?

A

Converts assembly language into machine code.

39
Q

What is the difference between a One-pass and Two-pass Assembler?

A

A One-pass assembler translates code in one sweep but can’t handle forward references, while a Two-pass assembler builds a symbol table first and then generates the final machine code.

40
Q

What is Direct Addressing?

A

The instruction directly specifies the memory address of the operand.

41
Q

What is Indirect Addressing?

A

The instruction specifies an address that contains the actual address of the operand.

42
Q

What is Indexed Addressing?

A

The address used is computed as a base address plus an offset from the Index Register.

43
Q

What is Relative Addressing?

A

The next instruction’s address is calculated as an offset from the current address.

44
Q

How does a Left Shift (LSL #n) affect a binary number?

A

Multiplies the number by 2^n by shifting bits left.

45
Q

How does a Right Shift (LSR #n) affect a binary number?

A

Divides the number by 2^n by shifting bits right.

46
Q

What is the difference between Logical Shift and Arithmetic Shift?

A

Logical Shift fills vacant bits with zeros, while Arithmetic Shift preserves the sign bit for signed numbers.

47
Q

What is a Cyclic Shift?

A

A shift where the removed bit is added to the other end.