1. In makefile the comment begins with the character
2. Which one of the following command creates the executable file hello.out?
3. In linux sysfs is always mounted at
4. The directory /opt is reserved for
5. read() system call on success returns
6. The permission -rwxr-xr-t represented in octal expression will be
7. Which one of the following is not true?
8. What is the output of this program?
#!/bin/bash
a=2
b=4
let c=a**b
echo $c
exit 0
#!/bin/bash
a=2
b=4
let c=a**b
echo $c
exit 0
9. Which one of the following is a mount point for a temporarily mounted filesystem?
10. 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
#!/bin/sh
echo "Just call the function"
hello_function
hello_function() {
echo "This is a function"
}
exit 0
Read More Section(Linux)
Each Section contains maximum 100 MCQs question on Linux. To get more questions visit other sections.