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 object oriented programming and procedure oriented
programming?

Answer Posted / achal ubbott

OOP is basically a way of doing organized programming. When
in old times, computer programs began to expand hugely then
a need to organize the code became important. So OOP came
into being.
Otherwise procedural programming(like in C) is enough to
get things going. But huge programs in C become difficult
to deal with. Since everything is global so a lot of
inconsistencies may arise.

Is This Answer Correct ?    9 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Get me a number puzzle game-program

2200


What is the difference between a mixin and inheritance?

939


What is use of overloading?

1088


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

2495


What is stream in oop?

1251


What are the benefits of polymorphism?

1181


How many human genes are polymorphic?

1014


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1938


What is encapsulation example?

989


#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

2574


Which type does string inherit from?

1066


What is class and object in oops?

1073


What is polymorphism give a real life example?

985


What is abstraction in oops?

990


What is polymorphism used for?

1021