Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is the application of oops?

Answer Posted / t naresh

1)Applications of the oops are begin to a importance in many ares.The most popular applications upto now has been in the area of user interface design such as windows
2)Some following applications of the oops are:
Real time system
simulation and modulation
Object oriemted database
Export system
Dession suport and office automation system
CIM/CAD/CAD system

Is This Answer Correct ?    11 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

2075


What is a function in oop?

1023


What is the full form of oops?

1123


What is static modifier?

1129


Get me a number puzzle game-program

2183


Is enum a class?

1005


#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

2565


How to improve object oriented design skills?

950


What is use of overloading?

1083


Write a program to sort the number with different sorts in one program ??

2326


What do you mean by variable?

977


Can we create object of interface?

1069


Which is better struts or spring?

993


2. Give the different notations for the class.\

2087


What is polymorphism programming?

1075