What is the command used to Erases the complete line
-
CTRL+Y
-
CTRL+U
-
CTRL+C
-
CTRL+F
B
Correct answer
Explanation
CTRL+U is the Unix/command-line shortcut that erases from the cursor to the beginning of the current line. This is a standard readline/emacs-style editing command available in bash and other Unix shells. CTRL+Y typically yanks (pastes) previously deleted text, while CTRL+C and CTRL+F have other purposes.