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
C
Correct answer
Explanation
In vi editor, the '$' command moves the cursor to the end of the current line. 'b' moves back one word, 'h' moves left one character, and 'W' moves forward one word (ignoring punctuation). '$' is the standard end-of-line navigation command.
D
Correct answer
Explanation
In vi editor, 'p' (put) pastes the contents of the buffer (yanked or deleted text) after the current cursor position (on the next line if line-wise). 'u' is undo, 'yy' yanks (copies) the current line into the buffer, and 'x' deletes the current character.
-
CTRL+O
-
CTRL+V
-
CTRL+N
-
None
A
Correct answer
Explanation
CTRL+O is the universal keyboard shortcut for 'Open' across Windows applications, including database systems. CTRL+V is for paste, and CTRL+N creates new files/databases. This shortcut works consistently in Microsoft Access, FileMaker Pro, and most database management tools.
B
Correct answer
Explanation
The listed items are inconsistent event names and thus NOT valid form events. Standard form event naming conventions are camelCase like 'onClick', 'onDblClick', 'onKeyDown' - not mixed variations. The presence of both 'onDblClick' and 'double-click' makes this list invalid and inconsistent. Proper event naming requires consistent convention.
-
%FOUND
-
%NOTFOUND
-
%ROWCOUNT
-
%ISOPEN
D
Correct answer
Explanation
%ISOPEN is a cursor attribute that returns TRUE if the cursor is currently open and FALSE if it is closed. This is useful for checking cursor state before attempting operations that require an open cursor. The other attributes track row existence (%FOUND/%NOTFOUND) or row count (%ROWCOUNT).
-
ctrl+alt+del+enter
-
alt+l
-
windows logo key+l
-
shift+ctrl
C
Correct answer
Explanation
The Windows logo key + L is the universal keyboard shortcut to lock the Windows screen. This combination works across all modern Windows versions and immediately locks the workstation, requiring password or other authentication to regain access. The other options listed are not valid screen lock shortcuts.
-
ctrl+a
-
ctrl+z
-
ctrl+c
-
ctrl+s
B
Correct answer
Explanation
Ctrl+Z suspends the current foreground job in Unix-like environments, moving it to the background. Ctrl+C terminates a process immediately, Ctrl+S freezes terminal scrolling, and Ctrl+A moves the cursor to the beginning of the line.
-
AppFocus
-
Focus
-
AppActivate
-
Activate
C
Correct answer
Explanation
AppActivate is the method used to set focus on a specific application window before using SendKeys. It takes the window title or handle as a parameter. AppFocus and Focus are not valid VBScript methods for this purpose. Activate alone is not the correct method name.
-
ENTER key is hit on the selection-screen
-
F8 key is hit on the selection-screen
-
Any field on selection-screen is populated
-
F4 key is hit on the selection-screen
B,C
Correct answer
Explanation
AT-SELECTION-SCREEN is triggered by F8 (Execute button) and when any field is populated (data entry). The ENTER key doesn't specifically trigger this event in standard SAP behavior, and F4 is for input help (value request), not selection-screen processing.
-
Ctrl D
-
Ctrl A
-
Ctrl P
-
Ctrl K
B
Correct answer
Explanation
Ctrl+A selects the entire worksheet (all rows and columns) in Excel. Ctrl+D fills down, Ctrl+P opens print dialog, and Ctrl+K inserts hyperlink. This is a standard Excel keyboard shortcut.
-
Cancel
-
Close
-
Delete
-
Cancel and Finally Close
D
Correct answer
Explanation
Through the Document Control window in Oracle Purchasing, the valid control actions for requisitions are 'Cancel' and 'Finally Close'. Requisitions cannot be simply closed or deleted from this control menu once they are in process.
-
Focus Event
-
Keyboard Event
-
Text Event
-
Mouse Event
A
Correct answer
Explanation
FocusEvent is generated when a component gains or loses input focus.
-
inputbox
-
alert
-
confirm
-
prompt
-
dialog
D
Correct answer
Explanation
The prompt box is used to get input from the user. It has an inbuilt text box where the user can type a value. After typing the data, the user must click on either 'OK' or cancel to continue. The value entered by the user is stored in a variable and the further action can be taken.
-
Use inputMethod
-
Use imeActionLabel
-
Use ImeOptions
-
Not possible
C
Correct answer
Explanation
ImeOptions is the correct attribute used to configure the soft keyboard's action buttons (Next, Done, Search, etc.). inputMethod refers to the input method service itself, not button configuration. imeActionLabel only sets custom text labels but doesn't control button visibility. It is definitely possible through xml attribute android:imeOptions or programmatically.
-
windowSoftInputMode="stateUnchanged"
-
windowSoftInputMode="stateVisible"
-
windowSoftInputMode="adjustResize"
-
windowSoftInputMode="adjustPan"
D
Correct answer
Explanation
adjustPan shifts the window contents upward to keep the focused field visible, which is what prevents the keyboard from covering the layout. stateUnvisible and stateVisible control keyboard visibility, not layout behavior. adjustResize resizes the layout, which can cause overlap issues in some configurations.