Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 2 (Q.No. 4)
4.
The compiler converts your C++ instructions into _____
edited code
object code
source code
translated code
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Lakshyajit said:   8 years ago
Actually, computer can't understand our program directly given in the text format, so we need to convert this program in a binary format, which can be understand by our computers.

This conversion, from text program to binary form is done by another software call compiler. Compiler convert source code into object code.

In C++ everything is treated as an object, so object code meant binary equivalent code of every object.

Post your comments here:

Your comments will be displayed after verification.