what is the application of oops?

Answer Posted / rupinder kaur

According to me,appilication of oop is where we use oop in
our real life to solve our mathematical or logical problems
by designing software.
for example,like we can design software to control the
function of robot or we can implement any mathematical
theorom easily by using oops.because it provides many
features over structured programming.

Is This Answer Correct ?    83 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we use class in oops?

555


What is abstract class in oop?

532


Why it is called runtime polymorphism?

573


What is multilevel inheritance?

723


What is the purpose of polymorphism?

677






What is ambiguity in inheritance?

625


Why do we need oop?

670


Why do while loop is used?

573


What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

1982


#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 meant by multiple inheritance?

736


What does and I oop mean in text?

620


What is the fundamental idea of oop?

638


Whats is abstraction in oops?

591


what type of questions

1697