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 testing
  1. Ctrl+M

  2. Ctrl+C

  3. Alt+M

  4. Ctrl+L

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

In QTP/UFT, Ctrl+M toggles comments on the selected line(s) of VBScript code. This is a common debugging technique to temporarily disable code without deleting it. Ctrl+C is copy, not comment, reinforcing that Ctrl+M is the correct mnemonic for coMment.

Multiple choice technology testing
  1. F3

  2. F5

  3. F9

  4. F10

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

F9 is the standard keyboard shortcut in QTP/UFT to toggle breakpoints at the current line in your code. F3 is typically used for step into debugging, F5 for continue/run, and F10 for step over in most debugging environments.

Multiple choice technology testing
  1. Ctrl+R

  2. Ctrl+O

  3. Ctrl+B

  4. Alt+F3

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

Ctrl+R opens the Object Repository in QTP/UFT where you can view and manage test objects. Ctrl+O is commonly used for opening files in most applications, and Ctrl+B typically relates to bookmarks or breakpoints.

Multiple choice technology testing
  1. Ctrl+M

  2. Alt+M

  3. Ctrl+Shift+M

  4. Shift+Ctrl+C

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

Ctrl+Shift+M is the keyboard shortcut to uncomment selected lines in QTP/UFT editor. Ctrl+M is typically used to comment lines, so uncommenting uses the same keys with the Shift modifier to reverse the operation.

Multiple choice technology testing
  1. Ctrl+N

  2. Shift+N

  3. Shift+Alt+N

  4. Alt+N

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

Shift+Alt+N is the QTP/UFT shortcut to create a new function library file. Ctrl+N is commonly used for new files in text editors, but function libraries require the modified key combination.

Multiple choice technology testing
  1. F3

  2. SHIFT+ALT+F3

  3. CTRL+SHIFT+F3

  4. F10

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

In HP QuickTest Professional (QTP), the standard keyboard shortcut to start and stop analog recording mode is SHIFT+ALT+F3. This mode records precise mouse movements and keyboard inputs relative to the screen, whereas other function keys like F3 or F10 trigger different application actions.

Multiple choice technology operating systems
  1. edit file /etc/inittab and change value to 5

  2. ctrl + 6

  3. alt + ctrl + del

  4. alt + F1 to F6

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

In Linux systems, virtual consoles can be accessed using key combinations Alt + F1 through Alt + F6. Other options like Ctrl + 6 or Ctrl + Alt + Del (which reboots the system) do not open new virtual consoles, and changing /etc/inittab is configuration, not the direct method of entering them.

Multiple choice technology operating systems
  1. Memory Info

  2. Scroll back and forward through your terminal.

  3. Scroll through your most recent commands.

  4. List the interrupts in use.

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

C is correct because in bash and most Unix shells, up/down arrow keys navigate through command history, scrolling through previously executed commands. A is incorrect - memory info requires commands like 'free' or 'top'. B describes Shift-PageUp/PageDown behavior, not arrow keys. D would require commands like 'cat /proc/interrupts'.

Multiple choice technology testing
  1. Shift+Ctrl+F9

  2. Ctrl+Shift+F9

  3. Alt+Shift+F9

  4. Alt+Ctrl+F9

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

Ctrl+Shift+F9 is the standard keyboard shortcut in most IDEs and debugging tools to clear all breakpoints at once. Shift+Ctrl+F9 is functionally the same, but Ctrl+Shift+F9 is the conventional order. Alt combinations are used for other debugging commands.