Linux Makefile Question:
Download Questions PDF

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

Makefile Interview Question
Makefile Interview Question

Answer:

c) first target whose name does not starts with "."

Download Makefile Interview Questions And Answers PDF

Previous QuestionNext Question
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 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