Linux - Study Mode

[#321] Which gcc option stops compilation process after preprocessing stage?
Correct Answer

(C) -E

[#322] Running "make" command without the arguments starts the target . . . . . . . . in the makefile.
Correct Answer

(C) first

[#323] What is the output of this program? #!/bin/bash
var[1]=hello_1
var[2]=hello_2
var[3]=hello_3
echo ${var[*]}
exit 0
Correct Answer

(D) hello_1 hello_2 hello_3

[#324] The command "gcc -S demo.c" will
Correct Answer

(C) stop compilation process after the generation of assembly code file & generate demo.s file

[#325] The statement z = 'expr 5 / 2' would store which of the following values in z?
Correct Answer

(C) 2