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

Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?

4236


What is encapsulation process?

575


write a C++ program for booking using constructor and destructor.

2042


what is the drawback of classical methods in oops?

2918


What is the types of inheritance?

602






What is the difference between abstraction and polymorphism?

613


What is polymorphism used for?

566


What are the 4 main oop principles?

680


#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

2064


if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?

2753


What is oops and its features?

584


Can an interface inherit a class?

557


Why is polymorphism needed?

591


What is static in oop?

585


How to use CMutex, CSemaphore in VC++ MFC

4327