What is the output of the following command sequence?
for token in a b c; do
echo -n “$token “;
done
A.
anbncn
B.
a b c
C.
“a ” “b ” “c “
D.
token token token
E.
abc
What is the output of the following command sequence?
for token in a b c; do
echo -n “$token “;
done
What is the output of the following command sequence?
for token in a b c; do
echo -n “$token “;
done
A.
anbncn
B.
a b c
C.
“a ” “b ” “c “
D.
token token token
E.
abc
The answer should be C
The answer is correct in case ” was used, if “ is used then the answer is C..