Multiple choice technology

what is the command used to Logs out of the current session

  1. CTRL+D

  2. CTRL+F

  3. CTRL+C

  4. CTRL+B

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

CTRL+D sends the EOF (End-Of-File) signal in Unix shells, which causes the shell to exit (log out) if typed at an empty prompt. This is the standard way to log out of a terminal session. CTRL+C interrupts processes, CTRL+F is not a standard shell command, and CTRL+B moves the cursor backward in readline mode.