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
Answer : A
When the command echo $ outputs 1, which of the following statements is true?
Answer : C
FILL BLANK -
What word is missing from the following SQL statement?
insert into tablename ________(909, 'text');
(Please specify the missing word using lower-case letters only.)
Answer : VALUES -or- values
Which command makes the shell variable named VARIABLE visible to subshells?
Answer : B
What output will the command seq 10 produce?
Answer : B