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
-
alt + c
-
ctrl + ins
-
alt + ins
-
shift + ins
B
Correct answer
Explanation
Ctrl + Ins (Insert) is the alternative for Copy (Ctrl + C) in Windows. Shift + Ins is for Paste, not Copy. Alt + C and Alt + Ins are not standard copy shortcuts. This convention dates back to keyboard standards before Ctrl+C became universal.
-
alt + ins
-
alt + v
-
ctrl + ins
-
shift + ins
D
Correct answer
Explanation
Shift + Insert is the alternative keyboard shortcut for Paste (Ctrl + V) in Windows. This works alongside Ctrl + Ins (Copy) and Shift + Del (Cut). The other options listed are not standard paste shortcuts.
-
winkey + pageup
-
winkey + M
-
winkey + T
-
alt + winkey
B
Correct answer
Explanation
Winkey + M minimizes all windows to show the desktop, just like Winkey + D. Winkey + PageUp and Winkey + T do different things (3D window flip and taskbar focus). Alt + Winkey has no desktop-related function.
-
Ctrl + esc
-
Alt + esc
-
esc + winkey
-
alt + winkey
A
Correct answer
Explanation
The Windows key (Winkey) opens the Start menu, and Ctrl+Esc performs the same function by sending the same signal to the operating system. This keyboard combination is a standard alternative shortcut. Alt+Esc cycles through open windows, while esc+winkey and alt+winkey are not valid shortcuts for accessing the Start menu.
-
F2 key
-
F1 key
-
F10 key
-
Esc key
B
Correct answer
Explanation
In Microsoft Office applications and most Windows software, the F1 key is the universal help key. Pressing F1 opens the help system or documentation. F2 is often for editing, F10 for menu access, and Esc for canceling operations. The F1 key has been the standard help shortcut since the early days of Windows.
-
Click Start/Programs/Office Shortcuts
-
Click Start/Programs/Microsoft Office Tools/Microsoft Office Shortcut Bar
-
In any Office program, click Windows/Shortcut Bar.
-
There is no such thing as an Office Shortcut Bar.
B
Correct answer
Explanation
The Office Shortcut Bar was a feature in older Microsoft Office versions (97-2003). To enable it, you navigated through Start → Programs → Microsoft Office Tools → Microsoft Office Shortcut Bar. This feature provided quick access to Office applications and files. It was deprecated in later Office versions.
-
To insert new text
-
To quit the vi editor
-
To delete word from cursor position
-
To delete entire line where cursor is located
A
Correct answer
Explanation
In vi editor, pressing Escape followed by 'i' switches to insert mode, allowing you to insert new text at the cursor position. This is one of the most fundamental vi commands.
-
To quit without saving
-
To save and quit vi editor
-
To quit the vi editor
-
To find the next occurance of the letter 'q'
C
Correct answer
Explanation
Escape + : + q attempts to quit vi. If no changes were made, it exits. If there are unsaved changes, vi will warn you. To force quit without saving, you'd use q!.
-
To save and quit vi editor
-
To continue with search
-
To copy the line where cursor is located
-
To quit without saving
D
Correct answer
Explanation
Escape + : + q! forces vi to quit without saving any changes. The exclamation mark overrides vi's safety check - use carefully as you'll lose unsaved work.
-
To replace word with a space
-
To continue with search
-
To search for specified word in backward direction
-
To search for specified word in forward direction
C
Correct answer
Explanation
In vi, ?pattern searches backward (up) through the file for the pattern. The forward search uses /pattern. This is vi's bidirectional search feature.
-
To search for specified word in backward direction
-
To search for specified word in forward direction
-
To replace word with a space
-
To continue searching
B
Correct answer
Explanation
In vi, /pattern searches forward (down) through the file for the pattern. The backward search uses ?pattern. These are the two primary search directions in vi.
-
To copy the line where cursor is located
-
Search for the letter y
-
Save and quit the editor
-
Confirm quit without saving
A
Correct answer
Explanation
In vi, 'yy' yanks (copies) the entire current line. After yanking, you can paste it with 'p' (put). The 'y' stands for 'yank' - vi's term for copy.
-
To delete all occurances of the letter w
-
To delete word from cursor position
-
To delete entire line where cursor is located
-
To paste the text just deleted or copied at the cursor
B
Correct answer
Explanation
In vi, 'dw' deletes from the cursor position to the end of the word. 'd' is the delete operator, 'w' specifies the word motion object. This is a text object deletion.
-
!-1
-
<Backspace> l
-
Ctrl+p
-
!!
B
Correct answer
Explanation
Among the options, l is not a valid way to repeat the previous command. The others are all valid: !! repeats the last command, !-1 does the same, and Ctrl+p scrolls to previous command in history.
C
Correct answer
Explanation
The chomp function is specifically designed in Perl to remove the trailing newline character from a string. It's commonly used after reading input from the keyboard or a file to clean up the input. The 'trim' and 'tidy' functions don't exist in Perl's core functionality.