answersLogoWhite

0


Best Answer

object oriented programming focuses on performing actions and manipulation of data that is encapsulated in objects within a sequential series of steps while event driven is more dynamic and relies on event triggering and event handling to determine the sequencing of the program.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

In procedural coding you write instructions and expect them operate in the order specified (or decided by logic, etc.). Event driven programming is code that waits for certain events to happen and then reacts accordingly. For example, you might calculate a complicated math problem using procedural style because that scenario works well for that paradigm (the algorithm for the math problem can be programmed sequentially). Events are good for managing a lot of things at once or stuff you might not expect to happen (or expect to happen, just not sure when), i.e. a GUI like your web browser.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Difference between event driven and procedural programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is difference between visual programing and event driven programing?

event driven programming is occur when the creat any event means when the user touch the mouse and visual programming does not any oop


What is the difference between a model-driven and data-driven DSS?

What is the difference between a model-driven and data-driven DSS?


How is event driven programming different from other programming?

write a note on event driven programming


Vbnet is which type of language Service Oriented Architecture Programming Language Object Oriented Programming Language Procedural Oriental Programming Language?

Visual Basic .NET (VB .NET) is an OOP, an Object-Oriented Programming Language. It's paradigm is both OOP and Event-Driven, but that's beside the point.


Why vb is an event driven programming language?

because it is driven by events. as it is a language used in programming, then it only makes sense to say VB is an event driven programming language.


Disadvantages of event driven programming?

It uses a wimp hcimaking it user friendly.


What is the main difference between turbocharger and supercharger?

A "Turbocharger" is driven by exhaust gas. A "Supercharger" is driven mechanically by the engine.


Difference between turbocharger and supercharger?

A turbocharger is driven by the exhaust from the engine. A supercharger is belt driven off the engine.


What is the difference between a driver gear and a driven gear?

The driver gear has the input torque, and the driven gear has the output torque.


What is the difference between command driven software and menu driven softwares?

People use menus and computers use commands.


Difference between event driven programming and traditional programming?

In traditional programming, code was run from start to finish and sometimes asked for input along the way. Event driven programming, on the other hand, does nothing until it gets an event, such as a mouse moving or a key being pressed.


What is the difference between procedure oriented object-oriented and event driven programming?

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.