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 web technology
  1. Source entry can be updated by clicking the shortcut

  2. If the source entry is deleted, shortcut icon changes to indicate a broken link

  3. Access permission for a shortcut entry can be changed

  4. The access permission given to the shortcut entry does not change the access permission of source entry

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

A shortcut is a reference to a source file/folder. Clicking a shortcut opens the source entry but does not update it - updating requires editing the source directly. When the source is deleted, the shortcut becomes a broken link (B is true). Shortcut access permissions can be changed independently (C is true), and modifying shortcut permissions does not affect the source (D is true). Since the question asks which statement is FALSE, A correctly identifies that clicking a shortcut does not update the source.

Multiple choice technology testing
  1. Alt + R

  2. Crl+R

  3. Shift+R

  4. F3

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

In QTP (QuickTest Professional), Ctrl+R is the keyboard shortcut to open the Object Repository window. This provides quick access to view and manage test objects. The option has a minor typo ('Crl' instead of 'Ctrl') but the intended answer is correct.

Multiple choice technology
  1. Tab

  2. Spacebar

  3. Enter

  4. Backspace

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

Traditional typewriters had Tab, Spacebar, and Backspace (or equivalent backspace mechanism), but did not have an Enter/Return key. Line breaks on typewriters were created by a carriage return lever, not a key. The Enter key is a computer keyboard addition for sending commands or confirming input.

Multiple choice technology programming languages
  1. Precede it with two forward slashes, i.e. '//'

  2. Precede it with an asterisk and a forward slash, i.e. '*/'

  3. Precede it with an asterisk, i.e. '*'

  4. Precede it with a forward slash and an asterisk, i.e. '/*'

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

Single-line comments in JavaScript use // at the beginning of the line. Option D shows the opening of multi-line comments (/), Option B shows the closing of multi-line comments (/), and Option C shows just an asterisk used for other purposes.

Multiple choice technology programming languages
  1. Precede it with two forward slashes, i.e. '//'

  2. Precede it with an asterisk and a forward slash, i.e. '*/'

  3. Precede it with an asterisk, i.e. '*'

  4. Precede it with a forward slash and an asterisk, i.e. '/*'

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

Single-line comments in JavaScript start with two forward slashes (//). Option B describes the end of a multi-line comment (/), option C is just multiplication, and option D is the start of a multi-line comment (/), which can span multiple lines but isn't used for single lines.

Multiple choice technology
  1. Alt+F1

  2. Alt+F2

  3. Alt+F3

  4. Alt+F4

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

Alt+F1 toggles the Navigation Pane in Outlook. This shows or hides the left pane containing Mail, Calendar, Contacts, and other folder views. The Navigation Pane is essential for moving between Outlook components.

Multiple choice technology web technology
  1. Ctrl+Shift+Q

  2. Ctrl+Shift+N

  3. Ctrl+Shift+H

  4. Ctrl+Shift+S

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

Ctrl+Shift+Q is the standard Outlook keyboard shortcut to create a new meeting request. This combination directly opens a new meeting window, allowing users to quickly schedule appointments without navigating menus.

Multiple choice technology
  1. Ctrl+R

  2. Ctrl+S

  3. Ctrl+N

  4. Ctrl+F

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

Ctrl+R is the universal Outlook keyboard shortcut for replying to the selected message. This快捷键 opens a reply window to the sender, making email responses faster without navigating through menus.

Multiple choice technology
  1. /search_string

  2. %search_string

  3. _search_strin

  4. None

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

In vi editor, searching is done with / followed by the search string. The pattern /search_string will search forward for 'search_string' in the file. The % and _ prefixes are not valid vi search commands. Note the question has typos: 'serach' should be 'search' and 'sting' should be 'string'.