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 softskills business skills
  1. All the opened documents will be maximized

  2. All the opened documents will be minimized

  3. All the opened documents will be closed

  4. None of the above

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

The Windows Key + M shortcut is the standard command to minimize all currently open windows to the taskbar, showing the desktop. Windows Key + D performs a similar function by toggling the desktop view, but M specifically targets minimization.

Multiple choice softskills business skills
  1. Ctrl + Alt + Delete

  2. Ctrl + Shift + Delete

  3. Ctrl + Alt + Delete + Enter

  4. Alt + Shift +Delete + Enter

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

The standard shortcut to lock a Windows computer is Windows Key + L. However, Ctrl + Alt + Delete opens a security screen where 'Lock' is an option. Adding 'Enter' implies selecting the default lock option. The other combinations like Ctrl + Shift + Delete are for browser history or task management.

Multiple choice softskills business skills
  1. Key board

  2. Num pad

  3. Mouse

  4. None of these

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

Num Lock toggles the numeric keypad between typing numbers and acting as navigation keys (arrows, Home, End, etc.). Turning it ON enables the numbers and disables the navigation functions. Since 'Num pad' itself isn't disabled (just its secondary function), 'None of these' is the most accurate choice.

Multiple choice technology databases
  1. True

  2. False

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

Most database systems and programming environments allow multiple cursors to be open simultaneously. You can declare and open multiple cursors in the same program or session, fetching from them independently as needed. This is essential for complex data processing scenarios requiring multiple active result sets.

Multiple choice technology mainframe
  1. Sum up value in the fields specified in the SORT FIELDS statement and keep it as only one occurence in the o/p

  2. Removes the duplicates for the fields specified in the SORT FIELDS statement and keeps only the 1st occurence of it

  3. Works only for those records in the i/p file where no duplicates for the fields specified in SORT FIELDS statement,

  4. None of the above

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

SUM FIELDS = NONE is a SORT statement (in JCL and similar utilities) that removes duplicate records. It keeps only the first occurrence of records for the specified sort fields and eliminates subsequent duplicates. It does not sum values - that would require SUM FIELDS = fieldname. The operation applies to all input records, not just non-duplicate ones.

Multiple choice technology mainframe
  1. Sum up value in the fields specified in the SORT FIELDS statement and keep it as only one occurence in the o/p

  2. Removes the duplicates for the fields specified in the SORT FIELDS statement and keeps only the 1st occurence of it

  3. Works only for those records in the i/p file where no duplicates for the fields specified in SORT FIELDS statement,

  4. None of the above

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

SUM FIELDS = NONE removes duplicates by keeping only the first occurrence of records with matching sort keys. Despite the name 'SUM', it doesn't perform arithmetic summation when =NONE is specified - it deduplicates. The matching fields are those in SORT FIELDS statement.