Linux - Study Mode
[#581] Parameters can be passed to a function
Correct Answer
(A) by using the parameter variables $1, $2, $3.......
[#582] Which is an example for character special file?
Correct Answer
(C) Terminal
[#583] Which command searches the string in file opened in vi editor?
Correct Answer
(A) / or ?
[#584] What is the output of this program? #! /usr/bin/awk -f
BEGIN {
print "20"<"9" ? "true":"false"
}
Correct Answer
(A) true
[#585] What is the output of the program? #! /usr/bin/awk -f
#This filename is text.awk
BEGIN {
print FILENAME
}
Correct Answer
(B) program will print nothing