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 unix
  1. to move the cursor to a matching delimiter, when a delimiters a parenthesis, a bracket, or a brace.

  2. to move the cursor to the upperleft corner of the screen

  3. to move the cursor backward to the beginning of a word

  4. to move the cursor to the first column in the current line

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

In vi/vim editors, the % key moves the cursor between matching delimiters - pressing % on a parenthesis, bracket, or brace will jump to its closing or opening counterpart. This is useful for navigating code and structured text.

Multiple choice .net
  1. btn and chb

  2. btn and cbo

  3. bto and chb

  4. bto and cbo

  5. cmd and cbo

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

To solve this question, the user needs to be familiar with common naming conventions for controls in user interfaces. Specifically, the user should know the standard prefixes used for button and combo box controls.

Now, let's go through each option and explain why it is right or wrong:

A. btn and chb: This option is incorrect. The prefix "btn" is commonly used for button controls, but the prefix "chb" is not typically used for combo box controls.

B. btn and cbo: This option is correct. The prefix "btn" is commonly used for button controls, and the prefix "cbo" is commonly used for combo box controls.

C. bto and chb: This option is incorrect. Neither the prefix "bto" nor the prefix "chb" are commonly used for button or combo box controls.

D. bto and cbo: This option is incorrect. The prefix "bto" is not commonly used for button controls, and the prefix "cbo" is commonly used for combo box controls.

E. cmd and cbo: This option is incorrect. The prefix "cmd" is not commonly used for button controls, and the prefix "cbo" is commonly used for combo box controls.

The correct answer is:

B. btn and cbo

Multiple choice .net
  1. Click

  2. SingleClick

  3. DoubleClick

  4. MouseMove

  5. MouseDown

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

Common control events include Click, DoubleClick, MouseMove, and MouseDown. 'SingleClick' is not a standard event name - the standard event is 'Click' which handles single clicks.

Multiple choice .net
  1. MsgBox

  2. InputBox

  3. TextBox

  4. Both a and b.

  5. All of the above.

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

The function that displays a pop-up window in VBA is the MsgBox function. This function is used to display a message in a dialog box and can include buttons for the user to click.

Option A) MsgBox - This option is correct because this function displays a pop-up window. Option B) InputBox - This option is incorrect because this function displays an input box to prompt the user for input. Option C) TextBox - This option is incorrect because this is a control used to display or enter text in a user form. Option D) Both a and b - This option is incorrect because option B is incorrect. Option E) All of the above - This option is incorrect because option C is incorrect.

Therefore, the correct answer is option A, MsgBox.

Multiple choice .net
  1. Clear

  2. Copy

  3. Cut

  4. Paste

  5. All of these methods use the clipboard

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

To determine which TextBox method does not use the clipboard, we need to understand the purpose of each method and how it interacts with the clipboard.

Let's go through each option and explain if it uses the clipboard or not:

A. Clear: This method does not use the clipboard. It simply clears the contents of the TextBox, removing any text that was previously typed or pasted into it.

B. Copy: This method uses the clipboard. It copies the selected text within the TextBox and places it on the clipboard, allowing it to be pasted elsewhere.

C. Cut: This method uses the clipboard. It cuts the selected text within the TextBox, removing it from the TextBox and placing it on the clipboard for pasting elsewhere.

D. Paste: This method uses the clipboard. It pastes the contents of the clipboard at the current cursor position within the TextBox.

E. All of these methods use the clipboard: This option is incorrect. As explained above, the Clear method does not use the clipboard. Therefore, not all of these methods use the clipboard.

The Answer is: A

Multiple choice .net
  1. A.

  2. shift.

  3. control.

  4. Both a and b.

  5. All of the above.

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

The KeyPress event fires when a character key (like 'A') is pressed. Modifier keys like Shift, Control, and Alt trigger KeyDown/KeyUp events but not KeyPress because they don't produce character input. KeyPress specifically captures printable characters.

Multiple choice javascript
  1. onmouseover and onmousedown

  2. onmousedown and onmouseout

  3. onmousedown and onmouseup

  4. onmouseup and onmouseout

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

To determine the correct answer, the user needs to understand the events associated with the onclick event in JavaScript.

The onclick event occurs when an element is clicked by the user. It is triggered when the mouse button is pressed down (onmousedown event) and then released (onmouseup event) while the cursor is still within the boundaries of the element. Therefore, the correct answer should include both onmousedown and onmouseup events in sequence.

Let's go through each option and explain why it is right or wrong:

A. onmouseover and onmousedown: This option is incorrect because it includes the onmouseover event, which is not part of the sequence for the onclick event. The onmouseover event is triggered when the mouse pointer enters the boundaries of an element, but it is not required for the onclick event to occur.

B. onmousedown and onmouseout: This option is incorrect because it includes the onmouseout event, which is not part of the sequence for the onclick event. The onmouseout event is triggered when the mouse pointer leaves the boundaries of an element, but it is not required for the onclick event to occur.

C. onmousedown and onmouseup: This option is correct. The onmousedown event is triggered when the mouse button is pressed down, and the onmouseup event is triggered when the mouse button is released. These two events occur in sequence when the onclick event is triggered.

D. onmouseup and onmouseout: This option is incorrect because it includes the onmouseout event, which is not part of the sequence for the onclick event. The onmouseout event is triggered when the mouse pointer leaves the boundaries of an element, but it is not required for the onclick event to occur.

Therefore, the correct answer is:

The Answer is: C. onmousedown and onmouseup

Multiple choice sql
  1. %ISOPEN

  2. %NOTFOUND

  3. both a and b

  4. %CURSORSOPEN

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

PL/SQL cursors have attributes like %ISOPEN (checks if cursor is open) and %NOTFOUND (checks if the last fetch returned no rows). %CURSORSOPEN is not a valid cursor attribute. Other attributes include %FOUND and %ROWCOUNT.

Multiple choice general knowledge science & technology
  1. adds a space

  2. DEL ( Delete)

  3. Enter

  4. Tab

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

In Windows, holding the ALT key and typing 0160 on the numeric keypad generates a non-breaking space (NBSP). This character looks like a space but prevents an automatic line break at its position in text processing.