LPI Level 1 Exam 102 Junior Level Linux Certification Part 2 of 2

Here you have the best LPI 102-400 practice exam questions

  • You have 120 total questions to study from
  • Each page has 5 questions, making a total of 24 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on October 20, 2025
  • This site is not affiliated with or endorsed by LPI.
Question 1 of 120
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
    Correct Answer: A

Question 2 of 120
When the command echo $ outputs 1, which of the following statements is true?
    Correct Answer: C

Question 3 of 120
SIMULATION -
What word is missing from the following SQL statement?
insert into tablename ________(909, 'text');
(Please specify the missing word using lower-case letters only.)
    Correct Answer:

Question 4 of 120
Which command makes the shell variable named VARIABLE visible to subshells?
    Correct Answer: B

Question 5 of 120
What output will the command seq 10 produce?
    Correct Answer: B