Difficulty: Easy
Correct Answer: A
Explanation:
Introduction / Context:
Text editing in vi involves switching between normal and insert modes. Knowing the difference between lowercase and uppercase commands allows faster editing. Appending specifically at the end of a line is a common task.
Given Data / Assumptions:
Concept / Approach:
The uppercase command A moves the cursor to the end of the line and enters insert mode, ready for appending. This differs from lowercase a, which appends immediately after the cursor only.
Step-by-Step Solution:
Verification / Alternative check:
Compare A with lowercase a. Use A to quickly append to a line regardless of cursor position.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
A.
Discussion & Comments