Which keystroke combination allows users to move the cursor to the beginning of the command line without deleting text?
Click on the arrows to vote for the correct answer
A. B. C. D.B
The keystroke combination that allows users to move the cursor to the beginning of the command line without deleting text is Ctrl + a.
Here is a detailed explanation of each keystroke combination and its functionality:
A. Ctrl + w: This keystroke combination deletes the word immediately preceding the cursor. For example, if the cursor is after the word "example" in the command "ls -l /example/directory", pressing Ctrl + w will delete the word "example".
B. Ctrl + a: This keystroke combination moves the cursor to the beginning of the command line without deleting text. For example, if the cursor is after the word "directory" in the command "ls -l /example/directory", pressing Ctrl + a will move the cursor to the beginning of the command line.
C. Ctrl + b: This keystroke combination moves the cursor back one character at a time without deleting text. For example, if the cursor is after the word "directory" in the command "ls -l /example/directory", pressing Ctrl + b will move the cursor to the letter "y".
D. Ctrl + u: This keystroke combination deletes all text from the cursor position to the beginning of the command line. For example, if the cursor is after the word "directory" in the command "ls -l /example/directory", pressing Ctrl + u will delete the text "/example/directory" and leave only "ls -l ".
Therefore, the correct answer is B, Ctrl + a.