Computer Knowledge

Computer Software Operations

1,772 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 programming languages
  1. DO WHILE statement

  2. nested DO loops

  3. a DO group

  4. DO UNTIL statement

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

Evaluating the investment requires iterating across multiple dimensions: the three different banks, the six years of investment, and the twelve monthly compounding periods per year. Nested DO loops are necessary to handle these multiple levels of iteration, whereas single DO groups, DO WHILE, or DO UNTIL statements cannot easily manage multi-layered loops.

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.

Multiple choice
  1. By pressing power button twice

  2. By pressing power button and then volume down buttons

  3. By pressing power button and volume down button at the same time

  4. By pressing volume down button and then power buttons

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

In the Android Version 4.0 and above, you can take the screen shots by pressing power button and volume down button at the same time.

Multiple choice
  1. use the find command

  2. use the display command

  3. use the jump menu

  4. use a related item

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

To locate a specific help topic in a help system, you use the Find command (or Search), which allows keyword-based searching rather than browsing through related items or jumping.

Multiple choice
  1. Shift + Home

  2. Ctrl + Home

  3. Alt + Home

  4. Home

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

Ctrl + Home is the universal keyboard shortcut in Windows applications to move the cursor/insertion point to the beginning of a document. Home alone moves to the line start, while Shift + Home selects to line start.

Multiple choice
  1. click Format paragraph

  2. hold down Ctrl + A

  3. hold down Shift + A

  4. hold down Alt + A

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

Ctrl + A is the universal keyboard shortcut to 'Select All' in Windows applications. Once the entire document is selected, formatting changes like spacing apply globally. The Format → Paragraph option only affects the current paragraph or selection.

Multiple choice
  1. press the Page Down key

  2. click below the scroll box on the scroll bar

  3. click the scroll arrow at the bottom of the scroll bar

  4. both (1) and (2)

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

Clicking below the scroll box on the vertical scroll bar moves down one screenful (page). Page Down also scrolls but not exactly one screenful; it moves by a fixed amount. The scroll arrow at the bottom moves line by line.

Multiple choice
  1. click Close on the File menu

  2. click Close button on the Menu bar

  3. click Close button on Standard toolbar

  4. Both 1 and 2

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

The File menu's Close command and the menu bar's close button both end the current document. The toolbar option is different.