⟩ The kill system call is used to a) Send shutdown messages to all by superuser b) Send a signal to a process c) Kill processes d) Stop the processes
b) Send a signal to a process
b) Send a signal to a process
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
Which one of the following provides all dependencies in the makefile? a) $^ b) $* c) $ d) none of the mentioned
The command "make google" will a) create the executable if google.c file is present in the current directory b) create the object file named as google.o c) give an error d) none of the mentioned