WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD
PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)
Answer / balu
the programming language which supports
inheritence,polymorpism,encapsulation is called o-o language.
the pgogrmming language which does not support inheritence
is called object based language.
| Is This Answer Correct ? | 27 Yes | 10 No |
2. Give the different notations for the class.\
Why multiple inheritance is not allowed?
How do you explain polymorphism?
Why a "operator=(...)" when there is a copy ctor?
what is difference between String s=new String("vali"); String s="vali"
what are the realtime excercises in C++?
Can java compiler skips any statement during compilation time?
What is the difference between declaration and definition?
Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.
What is the highest level of cohesion?
what is inline function?
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile