LPI Level 1 Exam 102, Junior Level Linux Certification, Part 2 of 2 102-400 Question # 1 Topic 1 Discussion

LPI Level 1 Exam 102, Junior Level Linux Certification, Part 2 of 2 102-400 Question # 1 Topic 1 Discussion

102-400 Exam Topic 1 Question 1 Discussion:
Question #: 1
Topic #: 1

What output will the following command sequence produce?

echo '1 2 3 4 5 6' | while read a b c; do

echo result: $c $b $a;

done


A.

result: 3 4 5 6 2 1


B.

result: 1 2 3 4 5 6


C.

result: 6 5 4


D.

result: 6 5 4 3 2 1


E.

result: 3 2 1


Get Premium 102-400 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.