NANDHOO
.
Learning Paths
Dashboard
Sign In
Home
Dashboard
C Programming Engineering Mastery
Compilers and Build Tools
Quiz
Chapter Quiz: Compilers and Build Tools
Compilers & Build Tools Quiz
Complete this assessment with 100% score to master this chapter.
01
Which stage of the compilation pipeline handles #include and #define directives?
Compiler
Linker
Assembler
Preprocessor
02
What is the primary function of the Linker (ld)?
Translating C to Assembly
Combining object files and libraries into a single executable
Optimizing code for speed
Checking for syntax errors
03
Which GCC flag is used to include debugging symbols for tools like GDB?
-O2
-Wall
-g
-E
04
What is the main advantage of using 'make' for large projects?
It makes the code run faster
It only recompiles files that have changed, saving build time
It automatically fixes bugs
It generates documentation
05
Which compiler is known for having a modular LLVM backend and highly readable error messages?
GCC
MSVC
Clang
Turbo C
Submit Answers
Back to Lesson
Next Chapter