What are the OOPS concepts?
Answer Posted / anil kumar battula
1.object
2.class
3.data Abstraction & encapsulation
4.Inheritence
5.polymorphism
6.data binding
7.message passing
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you explain polymorphism?
Why oops is important?
Prepare me a program for the animation of train
What are benefits of oop?
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
What is destructor give example?
What is encapsulation in ict?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is inheritance in simple words?
What are classes oop?
What language is oop?
• What are the desirable attributes for memory managment?
Is this job good for future? can do this job post grduate student?
when to use 'mutable' keyword and when to use 'const cast' in c++
Explain virtual inheritance?