Exam-style question
Try this first
Which instruction stores the contents of the accumulator in memory location 200 using direct addressing?.
- A.STORE #200
- B.LOAD 200
- C.STORE 200
- D.ADD 200
Model answer
What a good answer should say
- STORE 200
Explanation
Why this works
STORE writes the accumulator's contents to memory. The operand 200 is a memory address, so this is direct addressing.
Common mistake
No common mistake is linked to this question yet.
