answersLogoWhite

0


Best Answer

Procedural Programming simply put is dividing your problem into smaller parts (utilizing the Divide and Conqure Law) and then representing each smaller part by a definitive and exact sub-routine/function/procedure.

Hence you look at the code as a big pile of different procedures that are coupled with each other, one calling the other, or one calling many while some not calling anything but rather doing specific computations and returning the results.

Event Driven?! I do not believe there is such a method that stands alone, Event driven is a charactaristic rather than a development approach.

Object Oriented Programming (OOP) looks at your problem ad breaks it down to different objects, each object has consists of a number of elements, called Members and Methods. (i.e variables and functions respectively)
so your problem is then defined as the different objects working together and inside each other sometimes in a closely coupled manner.

the conclusion is, OOP deals with objects and operations on those objects, where as procedural development breaks down computation to little pieces.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between procedure oriented object-oriented and event driven programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between structured oriented programming procedure and oriented programming?

LOTTA


What is the difference between java and object oriented programming?

java is a programming language/platform that embodies object oriented programming concepts. The question of what is the difference is like asking what is the difference between cars and a Volvo.


How is it different from the procedure-oriented programming?

How is what different... Please restate the question.


The main emphasis of procedure-oriented is on algorithms rather than on data?

the main emphasis of procedure oriented programming is on algorithms rather than on data


What is the difference between oriented programming language and high programming language?

Set/subset: Some high level programming languages are object oriented, but not all of them.


Difference between conventional programming and object oriented programming?

diff between oops and conventional programming


What does object oriented and procedural mean in programming language?

procedure oriented means program will be execte in step by step procedure,when comes to object oriented means every thin can be represents the object a step[ step procedure doesnot follow


What do you mean by procedure oriented programming?

A list of instructions telling a computer, step by step, what to do.


What is the different between c and c plusplus?

C is a procedure oriented programming and C++ is a object oriented programming.C++ is a superset of C.


What is the distinct difference between object oriented concept and object oriented programming?

Object oriented concepts are a generalisation of the object oriented principals (encapsulation, inheritance, polymorphism and abstraction) without specifying a particular implementation of those principals. Object oriented programming is the application of those principals through an object oriented programming language.


What kind of language is C programming?

C is a general purpose, procedure oriented (procedural) programming language developed by Dennis Ritchie in 1972.


What does an object message correspond to in non-Object oriented programming terms?

A call to a procedure from your main routine.