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 technology
  1. CTRL+C

  2. CTRL+Z

  3. CTRL+B

  4. CTRL+P

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

CTRL+B moves the cursor backward one character in readline editing mode (used by bash and other Unix shells). This follows emacs-style keyboard shortcuts where B stands for 'backwards.' CTRL+C interrupts, CTRL+Z suspends, and CTRL+P moves to the previous history command.

Multiple choice technology
  1. CTRL+W

  2. CTRL+B

  3. CTRL+C

  4. CTRL+D

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

CTRL+W deletes the word before the cursor in Unix shells - so in 'mv file1 file2', if your cursor is after 'file2', it removes 'file2'. CTRL+C sends interrupt signal, CTRL+B moves cursor back one character, CTRL+D sends end-of-transmission or logout.

Multiple choice technology
  1. Ctrl +

  2. Ctrl -

  3. Shift +

  4. Shirt -

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

In Excel, Ctrl+- (Ctrl minus) is the keyboard shortcut to delete the selected row(s) or cells. The Ctrl+ key typically opens insert dialog, while Shift combinations are used for selection, not deletion.

Multiple choice technology
  1. Alt + A

  2. Alt + B

  3. Alt + C

  4. Alt + D

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

Alt + D is the keyboard shortcut to move focus to the Address bar in Internet Explorer. This shortcut works across multiple versions of Internet Explorer and is commonly used to quickly type or paste a URL without clicking.

Multiple choice technology
  1. Ctrl + Backspace

  2. Ctrl + Enter

  3. Ctrl + Tab

  4. Ctrl + Alt

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

Ctrl + Enter is the standard keyboard shortcut to insert a page break in Microsoft Word. This shortcut works in all versions of Word and is commonly used to force content onto a new page, unlike Ctrl + Backspace which deletes words.

Multiple choice technology web 2.0
  1. If onKeyDown returns false, the key-press event is cancelled

  2. If onKeyPress returns false, the key-down event is cancelled.

  3. If onKeyDown returns false, the key-up event is cancelled.

  4. If onKeyPress returns false, the key-up event is canceled.

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

Returning false from a key event handler like onKeyDown cancels the default browser action of that key press, effectively cancelling the keypress event. The keyup event will still fire, and keydown itself has already occurred, so other options are incorrect.

Multiple choice technology operating systems
  1. Brings up start menu

  2. Opens task manager

  3. Minimizes all applications

  4. Closes all applications

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

Ctrl+Esc is a Windows keyboard shortcut that opens the Start menu, providing quick access to programs and system functions. It's equivalent to clicking the Start button.

Multiple choice technology operating systems
  1. F3

  2. F2

  3. F1

  4. F5

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

F5 is the standard keyboard shortcut used across modern web browsers and file explorers (like Windows Explorer) to refresh the current view or page content. F1 is typically for help, F2 is for renaming, and F3 is for searching.