⟩ Signals are handled using which system call? a) kill b) signal c) both d) none
b) signal
b) signal
Running "make" command without the arguments starts the target ____ in the makefile. a) ".phony" b) "clean" c) first d) none of the mentioned
Which one of the following can be used to specify the directory to search the dependencies and target files? a) VPATH b) CPATH c) FPATH d) none of the mentioned
Macros for the make-file can be defined in a) makefile b) command line c) both (a) and (b) d) none of the mentioned
Which one of the following is used for the target file-name in the make-file? a) $@ b) $* c) $? d) none of the mentioned
In the make-file the target and dependencies are separated by the character a) - b) c) / d) none of the mentioned
Which one of the following is not a valid makefile directive? a) if b) elif c) endif d) none of the mentioned
When a target of makefile fails to execute a) make does not executes any other target dependent on it b) it returns a status c) both (a) and (b) d) none of the mentioned
What is makefile? a) makefile describes to the make command that how to compile the program b) makefile contains various statements related with the compilation of target c) both (a) and (b) d) none of the mentioned
What is phony target in the makefile? a) the target which is not a filename b) the target which is a filename c) the target which does not used for compilation d) none of the mentioned
The makefile starts executing from a) first target b) first target whose name starts with "." c) first target whose name does not starts with "." d) none of the mentioned