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
-
Ctrl+M
-
Ctrl+C
-
Alt+M
-
Ctrl+L
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.
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.
-
Shift+F12
-
F11
-
F12
-
Alt+F12
C
Correct answer
Explanation
F12 is the QTP/UFT shortcut key to insert a standard checkpoint at the current cursor position. Shift+F12 is used for output values, while F11 is typically for step-into debugging operations.
-
Ctrl+R
-
Ctrl+O
-
Ctrl+B
-
Alt+F3
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.
-
Ctrl+M
-
Alt+M
-
Ctrl+Shift+M
-
Shift+Ctrl+C
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.
-
Ctrl+A
-
Ctrl+Shift+F9
-
Ctrl+Shift+F4
-
Shift+F9
B
Correct answer
Explanation
Ctrl+Shift+F9 removes all breakpoints from the current action in QTP/UFT. F9 alone toggles individual breakpoints, and Ctrl+A selects all text rather than affecting breakpoints.
-
Ctrl+N
-
Shift+N
-
Shift+Alt+N
-
Alt+N
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.
-
stopped
-
default
-
pressed
-
selected
B,C,D
Correct answer
Explanation
Buttons in Android widgets, which are displayed using RemoteViews, support typical UI states such as default, pressed, and selected to provide visual feedback. A 'stopped' state is not a valid standard UI state for buttons.
-
a.F9 & F10
-
b.F5 & (Shift+F5)
-
c.(Shift+F5) & F5
-
d.F10 & F9
B
Correct answer
Explanation
In Vugen, F5 is the standard shortcut key for running the current script, while Shift+F5 compiles and runs the script. These are common IDE shortcuts that Vugen follows for script execution.
-
ToolTip
-
TipWin
-
ToolTipWin
-
ToolsTips
-
B,C & D
E
Correct answer
Explanation
The ToolTip component is the correct control for adding tooltips in VB.NET. TipWin, ToolTipWin, and ToolsTips are not valid controls in the VB.NET framework - they appear to be made-up distractors.
-
By selecting the Sélectionner button
-
By double clicking the record
-
By selecting the record and press enter key
-
By draging a record into application
-
F3
-
SHIFT+ALT+F3
-
CTRL+SHIFT+F3
-
F10
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.
-
edit file /etc/inittab and change value to 5
-
ctrl + 6
-
alt + ctrl + del
-
alt + F1 to F6
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.
-
Memory Info
-
Scroll back and forward through your terminal.
-
Scroll through your most recent commands.
-
List the interrupts in use.
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'.
-
Shift+Ctrl+F9
-
Ctrl+Shift+F9
-
Alt+Shift+F9
-
Alt+Ctrl+F9
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.