Linux - Study Mode
[#366] . . . . . . . . is a directory (which should exist), on which to mount the file system?
Correct Answer
(C) Mount-point
[#367] The command "echo www.example.com > /proc/sys/kernel/hostname" will
Correct Answer
(A) change the hostname
[#368] After using the shared library, memory can be done free by calling
Correct Answer
(A) dlclose
[#369] Command line parameters are passed by the
Correct Answer
(D) linker
[#370] After running this program, as you press 'e', what will be the output of the program? #!/bin/bash
echo "press 'e' to print Example"
read var
if $var=e
then
echo "Example"
else
echo "You did not press e"
fi
exit 0
Correct Answer
(C) Program will generate an error message