Multiple choice technology operating systems

what character in unix is treated as a command separator?

  1. ;

  2. :

  3. `

  4. "

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

In Unix shells, the semicolon (;) is used as a command separator, allowing multiple commands on a single line. The colon (:) has different uses like in PATH variables. Backticks (`) are for command substitution. Double quotes (") are for string quoting with variable expansion. The semicolon cleanly separates independent commands.