What is Object Oriented programming.what is the difference
between C++ and C?
Answer Posted / jai
C++ is oops becoz data structure is not scattared through
out the program.Data and member fucntion which operates on
data member are bind by a object.The functon which will
modify the particular data members of class are fixed.No
fucntion form outside will change it.In c, datastructure
are scattred through out the program and any fuction can
chnage their value and we have to trac that.In c++,data
member is bound to object and the member fucntion which
will change the data also bind by same object.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
How do you show the declaration of a virtual constructor?
Write a note about the virtual member function?
what is a class? Explain with an example.
Is c++ a good first language to learn?
which of the following is not an secondary constant a) array b) real c) union
Explain the problem with overriding functions
what are the events occur in intr activated on interrupt vector table
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
Which bit wise operator is suitable for putting on a particular bit in a number?
What are the 3 levels of programming languages?
Describe exception handling concept with an example?
Write a recursive program to calculate factorial in c++.
What is void pointer in c++ with example?
Is it possible to have a recursive inline function in c++?
Why iomanip is used in c++?