What is the output of the following code:
os=Unix
echo 1.$os 2."$os" 3.'$os' 4.$os
os=Unix
echo 1.$os 2."$os" 3.'$os' 4.$osA. 1.Unix 2.Unix 3.Unix 4.Unix
B. 1.Unix 2.Unix 3.$os 4.Unix
C. 1.Unix 2.Unix 3.Unix 4.$os
D. 1.Unix 2.$os 3.$os 4.$os
Answer: Option B
Related Questions on Linux
What command is used to count the total number of lines, words, and characters contained in a file?
A. countw
B. wcount
C. wc
D. count p
E. None of the above
What command is used with vi editor to delete a single character?
A. x
B. y
C. a
D. z
E. None of the above

Join The Discussion