what is the basic concept of inheritance?

Answer Posted / prasad salpekar

Inheritance basically refers to the characterstics of
a new class which is been aquired by an existing class

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.

1549


which feature are not hold visual basic of oop?

1733


INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?

1641


#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

2078


What do you mean by variable?

583






What is ambiguity in inheritance?

631


What are the features of oop?

645


write a program to find 2 power of a 5digit number with out using big int and exponent ?

1907


What is multilevel inheritance?

734


what's the basic's in dot net

1746


What is encapsulation in oop?

613


What is encapsulation process?

597


Can we define a class within the interface?

567


What is a superclass in oop?

680


What is encapsulation in oops?

547