What are the OOPS concepts?
Answer Posted / krish
oops conepts are:
1. object
2.encapsulation
3.abstraction
4.class
5.polimorphism
6. message passing
7.inheristance
8.dynamic binding
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What is stream in oop?
What are benefits of oop?
write a C++ program for booking using constructor and destructor.
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What is byval and byref? What are differences between them?
What are different oops concepts?
What is abstraction oop?
What is interface? When and where is it used?
c++ program to swap the objects of two different classes
Give two or more real cenario of virtual function and vertual object
Prepare me a program for the animation of train
What type of loop is a for loop?
What are the 3 pillars of oop?
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