Linux - Study Mode

[#311] The buddy algorithm handles the
Correct Answer

(A) Memory fragmentation

[#312] Which vi editor command copies the current line of the file?
Correct Answer

(A) yy

[#313] The correct sequence of GCC compilation process is
Correct Answer

(A) preprocessing → compilation → assemble → linking

[#314] How to run a process in the background?
Correct Answer

(A) &

[#315] What is the output of the program? #! /usr/bin/awk -f
BEGIN {
a["linux","MCQ"]="example"
print a["linux","MCQ"]
}
Correct Answer

(A) example