Linux - Study Mode
[#516] 'stty tostop' command will
Correct Answer
(B) stop background jobs if they try to send output to the terminal
[#517] In Linux, the static library has the extension of
Correct Answer
(A) .a
[#518] Among these files which has an ELF format
Correct Answer
(D) all of the mentioned
[#519] In debugging with GDB, break points can be set to
Correct Answer
(C) both any line and function
[#520] What is the output of the program? #! /usr/bin/awk -f
BEGIN {
a[1]="example"
delete a[1]
print a[1]
}
Correct Answer
(B) program will print nothing