Answer Posted / deepak
# define swap(a,b) a = a + b; b = a - b; a = a - b;
| Is This Answer Correct ? | 50 Yes | 8 No |
Post New Answer View All Answers
Is data hiding and abstraction same?
What is the point of oop?
What is multilevel inheritance?
what is different between oops and c++
Why do pointers exist?
Give two or more real cenario of virtual function and vertual object
How to call a non virtual function in the derived class by using base class pointer
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
What is overloading in oop?
What is the real time example of encapsulation?
What are properties in oop?
What is the importance of oop?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is purpose of inheritance?
What is an example of genetic polymorphism?