Linux - Study Mode

[#456] Which compilation step makes sure that all the undefined symbols in the code are resolved.
Correct Answer

(A) linking

[#457] Macros for the makefile can be defined in
Correct Answer

(C) both makefile and command line

[#458] The channel between the processor and devices is called?
Correct Answer

(A) bus

[#459] The directory file contains:
Correct Answer

(B) File names & Inode Numbers

[#460] Which command is used to replace word 'cat' (already present in the file) with 'mouse' at all places in a file 'old.txt' and save the result in a new file 'new.txt'?
Correct Answer

(A) sed 's/cat/mouce/g' old.txt > new.txt