You cut a paragraph from a document, then copy a different sentence before pasting. What happened to the cut paragraph?
AIt is still available — the clipboard stores both the cut and the copied items
BIt is gone — the new copy overwrote the clipboard, and the paragraph no longer exists in the document or the clipboard
CIt was automatically pasted at the original location when you copied the new sentence
DIt is recoverable from the Recycle Bin
The clipboard holds only the most recent item. When you cut a paragraph, it exists only in the clipboard — it has been removed from the document. Copying a new sentence replaces the clipboard contents, so the cut paragraph is permanently gone from both locations. This is the most dangerous sequence in clipboard operations: cut → copy → paste loses the cut content. The safe habit is cut → paste immediately, with nothing in between.
Question 2 Multiple Choice
You drag a file from your C: drive to an external USB drive. By default, what happens to the original file?
AIt is moved — drag-and-drop always moves files to prevent accidental duplication
BIt is deleted — dragging to external media archives the file
CIt remains in place — dragging between different drives copies by default, leaving the original
DIt is compressed and transferred to save space
Drag-and-drop behavior depends on whether you are dragging within the same drive or across different drives. Dragging within one drive performs a move (equivalent to cut-paste). Dragging between different drives performs a copy by default — the original stays and a duplicate appears at the destination. This surprises many users who expect their file to have moved. You can override this: hold Shift while dragging to force a move across drives, or Ctrl to force a copy within the same drive.
Question 3 True / False
Pressing Ctrl+C immediately creates a visible duplicate of the selected content on screen.
TTrue
FFalse
Answer: False
Ctrl+C places the selected content into the clipboard — an invisible, temporary memory area — but creates no visible copy anywhere on screen. The content appears to be unchanged; the copy exists only in this hidden intermediate storage. Ctrl+V then retrieves the clipboard contents and inserts them at the cursor location. Understanding this invisible intermediate step is the core mental model for all copy-paste operations.
Question 4 True / False
Cutting content and then immediately pasting it (without doing anything else in between) is a safe operation that will not result in data loss.
TTrue
FFalse
Answer: True
The risk in cut operations comes from interrupting the cut→paste sequence — specifically, copying or cutting something else before pasting, which overwrites the clipboard. If you cut and then immediately paste without any intervening copy or cut operation, the content transfers safely. The safe habit is simply: cut, then paste immediately.
Question 5 Short Answer
Why does pasting the same text sometimes produce different results depending on which program you paste into?
Think about your answer, then reveal below.
Model answer: When you copy text, the clipboard stores not just the characters but also the rich formatting — fonts, colors, size, and other styling embedded in the original source. Different programs interpret clipboard contents differently: a plain text editor strips all formatting and accepts only characters; a word processor may preserve the full rich formatting; a terminal may include or misinterpret hidden formatting characters. This context-sensitivity is why copying code from a website into a document can introduce invisible formatting characters that cause errors.
This is the context-sensitivity of paste: the clipboard stores a rich representation, but each receiving application decides how much of that representation to accept. Most programs offer 'Paste Special' or 'Paste and Match Formatting' (often Ctrl+Shift+V) to force plain-text paste and discard formatting — useful when you want the text but not the styling from the original source.