what character in unix is treated as a command separator?
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.