[amp_mcq option1=”$” option2=”#” option3=”:” option4=”; E. None of the above” correct=”option4″]
The correct answer is: D. ;
The semicolon (;) is used to separate more than one command in the same command line. For example, the following command will print “Hello world” and then “Goodbye”:
echo "Hello world"; echo "Goodbye"
The other options are incorrect. The dollar sign ($) is the prompt character, the hash mark (#) is used to start a comment, and the colon (:) is used to separate options from arguments.