LPI Exam Questions

What is the output of the following command sequence?

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