Linux - Study Mode

[#761] What is the output of this program? #!/bin/bash
a=2
b=4
let c=a**b
echo $c
exit 0
Correct Answer

(B) 16

[#762] Which one of the following is a mount point for a temporarily mounted filesystem?
Correct Answer

(A) /mnt directory

[#763] What is the output of this program? #!/bin/sh
echo "Just call the function"
hello_function
hello_function() {
echo "This is a function"
}
exit 0
Correct Answer

(D) none of the mentioned

[#764] To build a modularized kernel, the kernel-headers and kernel-source packages must first be installed. Where will you find the kernel-headers and kernel-source?
Correct Answer

(B) /usr/src/linux

[#765] After you have compiled your kernel, what do you have to edit to boot your new kernel image?
Correct Answer

(D) /etc/lilo.conf