Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is single inheritance?

Answer Posted / ranjit kumar nayak

inheritance is single bcoz it sharing the property between
two classes.one is called parent another is child.

Is This Answer Correct ?    75 Yes 21 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is interface in oop?

1187


What is a function in oop?

1138


What is an example of genetic polymorphism?

1242


What is polymorphism in oop example?

1074


what is the sylabus for priliminaries?

2227


Which is better struts or spring?

1116


What is encapsulation with example?

1200


How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction

2183


What is static in oop?

1120


Where You Can Use Interface in your Project

1939


What is encapsulation and abstraction? How are they implemented in C++?

1188


What does it mean when someone says I oop?

1123


How is polymorphism achieved?

1114


Why is oop useful?

1172


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

2345