00:00

QUESTION 46

Which file contains the date of the last change of a user's password?

Correct Answer: D

QUESTION 47

Which of the following tools used for DNS debugging, reports not only the response from the name server but also details about the query?

Correct Answer: B

QUESTION 48

When running the command sed -e "s/a/b/" /tmp/file >/tmp/file
While /tmp/file contains data, why is /tmp/file empty afterwards?

Correct Answer: C

QUESTION 49

CORRECT TEXT
Which command is used to create and initialize the files used to store quota information? (Specify ONLY the commandwithout any path or parameters.)

Correct Answer: quotacheck

QUESTION 50

After issuing:
function myfunction { echo $1 $2 ; }
in Bash, which output does:
myfunction A B C
Produce?

Correct Answer: A