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. Click the "Errors" tab

  2. Click the "All Errors" tab

  3. Click the "All Issues" tab

  4. Click the "Warnings" tab

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

In TMF (Testing Management Framework), the All Errors tab shows every error encountered during test execution. This is distinct from a general Errors tab which might show only current or filtered errors. The All Issues tab would include warnings as well.

Multiple choice technology
  1. click the code tab

  2. Click the impact tab

  3. Click the severity tab

  4. None of the above

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

In MSChange, to find the expected impact of a change, you click on the Impact tab. This is the most direct and logical path - the Impact tab would contain information about what systems or services will be affected. The Code tab would typically contain technical details or identifiers, Severity tab indicates urgency level, and None of the above is incorrect since the Impact tab exists.

Multiple choice technology web technology
  1. If onKeyDown returns false, the key-press event is cancelled.

  2. If onKeyPress returns false, the key-down event is cancelled.

  3. If onKeyDown returns false, the key-up event is cancelled.

  4. If onKeyPress returns false, the key-up event is cancelled.

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

In DOM event handling, onKeyDown returning false prevents the key-press event from firing. The event sequence is keydown → keypress → keyup, and canceling keydown stops the chain. Options C and D are wrong because onKeyDown doesn't affect key-up, which always fires when the key is released.

Multiple choice technology programming languages
  1. Bt1.Text = @”Go”;

  2. Bt1.Text = “&Go”;

  3. Bt1.Text = “&&Go”;

  4. Bt1.Text = “@Go”;

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

In Windows Forms, the ampersand (&) character before a letter creates an access key (shortcut). Writing "&Go" makes ALT+G trigger the button. The @ prefix in option A is for verbatim strings in C# and doesn't create shortcuts. Using && (option C) would display a literal ampersand. Option D uses @ incorrectly in this context.

Multiple choice technology
  1. Alt + Page Up

  2. Alt + Page Down

  3. Alt + Home

  4. Alt + Insert

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

In Windows Remote Desktop sessions, Alt + Page Up switches between applications in the left-to-right direction. This is specific to RDP client keyboard mapping and differs from standard Windows Alt+Tab behavior.

Multiple choice technology
  1. Ctrl + Alt + Break

  2. Ctrl + Insert

  3. Alt + Insert

  4. Ctrl + Alt + End

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

Alt + Insert in Remote Desktop sessions cycles through running programs in the order they were launched, providing an alternative to Alt+Tab that respects startup sequence rather than recent usage.

Multiple choice technology
  1. Ctrl + Home

  2. Alt + Home

  3. Alt + Del

  4. Ctrl + Alt + End

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

In Windows Remote Desktop sessions, Alt + Home brings up the Start menu, providing access to programs and system features when the local keyboard's Windows key might not be available or forwarded properly.