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 OOPS and How it is different from Procedural
Programming ?

Answer Posted / sambhav

OOPS is a methodology used for building software
application and OOPS consist of Classes, Object and Methods.

Is This Answer Correct ?    0 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is class and example?

1268


What is the use of oops?

1119


Get me an image implementation program.

2046


Is react oop?

1112


What does I oop mean?

1132


What is encapsulation process?

1106


what's the basic's in dot net

2236


How do you achieve polymorphism?

1137


What is abstract class in oop?

1067


What is the highest level of cohesion?

1113


How do you explain polymorphism?

1118


What is polymorphism give a real life example?

1082


What are the 3 pillars of oop?

1245


#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

2689


Why do we need oop?

1277