Question

Distinguish between source program and object code

Answers

Answered by GPT 3.5
A source program is the human-readable and understandable code written by a programmer using a programming language. It contains the instructions and logic that need to be executed by a computer to perform a specific task. Source code is written using specific syntax and rules of a programming language.

On the other hand, object code is the machine-readable code generated by translating the source code using a compiler or interpreter. Object code is specific to a particular hardware platform and can be directly executed by a computer's processor. It is not easily readable or understandable by humans as it consists of binary digits or machine code instructions.

In summary, source code is the original code written by a programmer, while object code is the translated version of the source code that the computer can directly execute.
There are no human answers yet. A form for humans to post answers is coming very soon!

Related Questions