A user wants to select all the text in a document and copy it to the clipboard without touching the mouse. Which key sequence accomplishes this?
ATab, then Ctrl+S
BCtrl+A, then Ctrl+C
CAlt+Tab, then Ctrl+X
DShift, then Ctrl+Z
Ctrl+A selects all content in the active window, and Ctrl+C copies the selection to the clipboard. These are two of the most universally applicable modifier-key shortcuts — they work in word processors, browsers, code editors, and most other applications. Option C (Ctrl+X) cuts rather than copies, which would remove the text.
Question 2 Multiple Choice
While filling out a web form, a user presses Tab after entering their name. What happens?
AA tab character is inserted into the current field
BThe form is submitted
CA new browser tab opens
DFocus moves to the next field in the form
Tab is a navigation key that moves focus forward through interactive elements — form fields, buttons, links — without requiring the mouse. This is the primary use of Tab outside of text indentation. The common misconception is that Tab inserts whitespace (as it does in some text editors), but in web forms and dialog boxes its role is navigation. Shift+Tab moves backward through the same sequence.
Question 3 True / False
The Escape key's function is application-specific and unpredictable — you have to check the manual to know what it does in each program.
TTrue
FFalse
Answer: False
Escape is nearly universal as the 'cancel' key: it closes dialogs, exits full-screen mode, dismisses pop-up menus, and cancels in-progress operations across a wide range of applications. While behavior can vary at the margins, the core pattern — Escape stops or cancels whatever is happening — is consistent enough that it's the first key to try when something unexpected occurs on screen.
Question 4 True / False
Holding Ctrl while pressing an arrow key in most text editors moves the cursor one word at a time instead of one character at a time.
TTrue
FFalse
Answer: True
Ctrl+arrow is a compound shortcut that extends the modifier key pattern: Ctrl changes what the arrow key does, upgrading a single-character move to a word-level jump. Adding Shift (Ctrl+Shift+arrow) further extends the action to select word by word. This illustrates the general principle that Ctrl modifies any key it's combined with — understanding the pattern lets you predict unfamiliar shortcuts before trying them.
Question 5 Short Answer
Why do keyboard shortcuts like Ctrl+C, Ctrl+V, and Ctrl+Z work in almost every application, even though different programs do very different things?
Think about your answer, then reveal below.
Model answer: These shortcuts are built on a shared convention — Ctrl is a modifier key that triggers a command rather than typing a character, and the most common commands (copy, paste, undo) were standardized across operating systems early in computing history. Because software developers adopted these conventions to meet user expectations, the shortcuts transfer across virtually all applications. The underlying principle is the modifier-key pattern: Ctrl on its own does nothing, but holding it while pressing another key activates a command layer.
The key insight is that modifier key conventions were standardized at the operating system level, so applications inherit them rather than inventing their own. This is why learning a small number of Ctrl-key shortcuts pays off disproportionately — the investment transfers to every piece of software you use.