⟩ Inside GDB, a program may stop because of a) a signal b) a breakpoint c) step command d) all of the mentioned
d) all of the mentioned
d) all of the mentioned
The lines in our code that begin with the "#" character are a) pre-processor directives b) macros c) header files d) none of the mentioned
The COFF stands for a) common object file format b) combined operation for file formats c) combined object file format d) none of the mentioned
Which one of the following is not true? a) we need to manually go through all intermediate stages to generate an executable in gcc b) gcc compilation process always contains 4 stages c) both (a) and (b) d) none of the mentioned
Which compilation step makes sure that all the undefined symbols in the code are resolved? a) linking b) compiling c) preporcessing d) none of the mentioned
Command line parameters are passed by the a) preprocessor b) assembler c) compiler d) linker
Which one of the following command can be used to provide executable permissions for a file? a) chmod +x b) chmod 777 c) both (a) and (b) d) none of the mentioned
The preprocessor removes the _______ from the source code. a) comments b) header files c) both (a) and (b) d) none of the mentioned
The assembly code is converted into the machine code by a) compiler b) assembler c) linker d) none of the mentioned
If google.c is compiled with GCC, then the google.s file will contain the a) assembly code b) machine code c) preprocessed code d) expanded source code
The object file contains the a) assembly code b) machine code c) modified source code d) none of the mentioned