Incremental-Compiler is a compiler
2018
Incremental-Compiler is a compiler
- A.
which is written in a language that is different from the source language
- B.
compiles the whole source code to generate object code afresh
- C.
compiles only those portion of source code that have been modified.
- D.
that runs on one machine but produces object code for another machine
Attempted by 176 students.
Show answer & explanation
Correct answer: C
An incremental compiler is a type of compiler that recompiles only the portions of source code that have been modified, rather than reprocessing the entire project. This approach improves compilation efficiency for large codebases by minimizing redundant work.
A video solution is available for this question — log in and enroll to watch it.