Difficulty: Easy
Correct Answer: IC = FC + EC
Explanation:
Introduction / Context:
The instruction cycle models how a CPU processes one instruction. In a simple model, it consists of fetching the instruction from memory (FC) and then executing it (EC). Some architectures add decode and memory cycles, but the canonical decomposition for fundamentals is fetch plus execute.
Given Data / Assumptions:
Concept / Approach:
By definition, the time or sequence for one instruction equals the time/sequence to fetch it plus the time/sequence to execute it. Therefore IC equals FC plus EC in this simplified model.
Step-by-Step Solution:
Verification / Alternative check:
Any architecture textbook diagram for the basic cycle shows a fetch phase (PC → MAR, memory read, IR ← MDR) followed by an execute phase (ALU/Control micro-ops), summing to the whole instruction cycle.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
IC = FC + EC
Discussion & Comments