What is inheritance and how many types of inheritance?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More OOPS Interview Questions

What is extreme programming?

2 Answers  


#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }

1 Answers  


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

0 Answers   Accenture,


What is destructor give example?

0 Answers  


what is function overloading..?

4 Answers  






How to deploy web appliction in web logic ?

1 Answers   Unisys,


why the argument is passed by reference to a copy constructor?example?

2 Answers  


In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}

1 Answers  


how to swap to variables without using thrid variable in java?

5 Answers  


What is the types of inheritance?

0 Answers  


Prepare me a program for the animation of train

0 Answers  


Can bst contain duplicates?

0 Answers  


Categories