Report Bug
Qus : Which of the following software translates source code into object code?
Qus निम्न में से कौन सा सॉफ़्टवेयर स्रोत कोड को ऑब्जेक्ट कोड में अनुवादित करता है?

A. Compiler
B. Interpreter
C. Assembler
D. None of These


Solution
A. Compiler



Explanation

A compiler takes the program code (source code) and converts the source code to a machine language module (called an object file). Another specialized program, called a linker, combines this object file with other previously compiled object files (in particular run-time modules) to create an executable file.




Report Bug