Interview Question
Qus: Differentiate between a Debug build and Release build?
In a debug build the complete symbolic debug information is emitted to help while debugging applications and also the code optimization is not taken into account. While in release build the symbolic debug info is not emitted and the code execution is optimized.
Answers (2)