Multiple choice

Which command will be used with vi editor to append text at the end of line?

  1. A

  2. a

  3. i

  4. I

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In vi editor, 'a' (append) switches to insert mode and places the cursor AFTER the current character position, allowing you to append text. This is different from 'A' which appends at end of line, 'i' which inserts BEFORE cursor, and 'I' which inserts at beginning of line. The lowercase 'a' specifically appends at the end of current cursor position.