Please tell me the oops concept with detailed answer

Answer Posted / afrina

oops concept:
class,object,data abstraction,data encapsulation,inheritance
and polymorphism.....

Is This Answer Correct ?    2 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you overcome the diamond problem in inheritance?

763


What is polymorphism in oops?

556


What is polymorphism explain its types?

674


What are the three main types of variables?

597


What is abstraction encapsulation?

653






What is class encapsulation?

584


Why do we need polymorphism in c#?

684


What is overriding vs overloading?

580


What does sksksk mean in text slang?

1530


What is solid in oops?

598


#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

2061


Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

2002


What is stream in oop?

835


What is the point of oop?

646


What is a null tree?

625