what is the basic concept of inheritance?

Answer Posted / nitish

Inheritance basically stands to inherit the +ve functions of
predecessor.

Earlier its the main base class to give birth to the further
derived class.
This derived class have the features from in its functioning
from the base class from which it have been derived.

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is class in oop with example?

625


What is balance factor?

589


Why do we need oop?

671


What is the full form of oops?

619


What is the point of polymorphism?

593






What is meant by oops concept?

616


What is encapsulation selenium?

556


Why do we use polymorphism?

583


Templates mean

1592


What is destructor give example?

608


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2070


What polymorphism means?

624


What is abstraction with example?

609


What do you mean by overloading?

586


What is a null tree?

632