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

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



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Alika

Alika

The answer should be C

Alika

Alika

The answer is correct in case ” was used, if “ is used then the answer is C..