what is the difference between source code and object code
Answers
(Source Code ) (Object Code)
Created by the programmer. ||| Created by the Compiler.
Text rich document. ||| Binary digits make up the Object Code.
Human Readable. ||| Machine Readable.
Can be changed over time. ||| Needs to compile the Source code
each time a change is to be made.
Not system specific. ||| System specific.
Serves as input to the compiler. ||| It is the output of the compiler.
Instructions written using English ||| Instructions encoded in Binary digits.
words and according to syntax of |||
the language. |||