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+O

  2. CTRL+V

  3. CTRL+N

  4. None

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology databases
  1. %FOUND

  2. %NOTFOUND

  3. %ROWCOUNT

  4. %ISOPEN

Reveal answer Fill a bubble to check yourself
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).

Multiple choice technology web technology
  1. ctrl+alt+del+enter

  2. alt+l

  3. windows logo key+l

  4. shift+ctrl

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology testing
  1. AppFocus

  2. Focus

  3. AppActivate

  4. Activate

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. ENTER key is hit on the selection-screen

  2. F8 key is hit on the selection-screen

  3. Any field on selection-screen is populated

  4. F4 key is hit on the selection-screen

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology packaged enterprise solutions
  1. Cancel

  2. Close

  3. Delete

  4. Cancel and Finally Close

Reveal answer Fill a bubble to check yourself
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.

Multiple choice
  1. inputbox

  2. alert

  3. confirm

  4. prompt

  5. dialog

Reveal answer Fill a bubble to check yourself
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.

Multiple choice
  1. Use inputMethod

  2. Use imeActionLabel

  3. Use ImeOptions

  4. Not possible

Reveal answer Fill a bubble to check yourself
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.

Multiple choice
  1. windowSoftInputMode="stateUnchanged"

  2. windowSoftInputMode="stateVisible"

  3. windowSoftInputMode="adjustResize"

  4. windowSoftInputMode="adjustPan"

Reveal answer Fill a bubble to check yourself
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.