What are the OOPS concepts?

Answer Posted / anil kumar battula

1.object
2.class
3.data Abstraction & encapsulation
4.Inheritence
5.polymorphism
6.data binding
7.message passing

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to use CMutex, CSemaphore in VC++ MFC

4324


Why is abstraction needed?

561


What are the benefits of oop?

601


What is encapsulation in ict?

597


Can you name some types of inheritance?

637






Why do we use polymorphism in oops?

575


Write a c++ program to display pass and fail for three student using static member function

2807


Can abstract class have normal methods?

606


What is a class and object?

590


#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3246


What is oops in simple words?

573


State what is encapsulation and friend function?

693


What are classes oop?

594


What is stream in oop?

835


What are benefits of oop?

631