Computer Knowledge

Computer Software Operations

1,659 Questions

This hub provides extensive practice on computer software operations and keyboard shortcuts. It covers document formatting, spreadsheet navigation, and common application commands. These questions are essential for candidates preparing for banking, railways, and staff selection computer proficiency tests.

Keyboard shortcutsSpreadsheet formattingDocument editingWeb page navigationMail merge operations

Computer Software Operations Questions

Multiple choice
  1. n

  2. a

  3. $
  4. j

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

In vi editor: 'n' finds next occurrence, 'j' moves down, '$' moves to end of line - all cursor movements. However, 'a' switches to insert mode AFTER current cursor position to append text. It's not a cursor movement command but rather a mode-switching command for text entry.

Multiple choice
  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.