⟩ The result of an expression can be assigned to an environment variable with the command a) assign b) set c) env d) none of the mentioned
b) set
b) set
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
If we do not specify the executable file name at the compilation time in GCC, then in linux the compiler creates executable named as a) a.out b) a.exe c) x.out d) x.exe
The macros specifies in source code are expanded by a) pre-processor b) assembler c) compiler d) linker
The preprocessor creates the file with extension a) .a b) .i c) .s d) .o
The a.out file is in the a) ELF format b) EXE format c) both (a) and (b) d) none of the mentioned
The compiler converts a) assembly code into machine code b) preprocessed source code into assembly code c) machine code into assembly code d) none of the mentioned
What is the role of linker in the compilation process? a) linker links the object code with the library code b) linker converts machine code into executable machine code c) linker generates an executable file d) all of the mentioned
The correct sequence of GCC compilation process is a) preprocessing -> compilation -> assemble -> linking b) assemble -> preprocessing -> compilation -> linking c) preprocessing -> assemble -> compilation -> linking d) none of the mentioned
Which type of application can be run on Linux? and explain what it the use of that?