What are the OOPS concepts?

Answer Posted / satya

objects
interface
polymorphism
inheritence
constructors
encapsulation

Is This Answer Correct ?    369 Yes 220 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

1991


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

2153


Plese get me a perfect C++ program for railway/airway reservation with all details.

3412


What is difference between polymorphism and inheritance?

603


Why is polymorphism important in oop?

617






2. Give the different notations for the class.\

1576


What causes polymorphism?

560


Advantage and disadvantage of routing in telecom sector

774


Is html an oop?

567


What is object in oops?

601


What is for loop and its syntax?

586


What is the real time example of encapsulation?

580


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1642


What is interface? When and where is it used?

1652


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1441