answersLogoWhite

0

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

12y ago

What else can I help you with?

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


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.


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 main difference between turbocharger and supercharger?

A "Turbocharger" is driven by exhaust gas. A "Supercharger" is driven mechanically by 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.


What is the difference between a driving and driven dimension?

Driving Dimension: the geometry is controlled by the dimension. Driven Dimension: the dimension is controlled by the geometry.


What is the difference between a super and turbo charger?

supercharger is belt/gear driven of the motor, the turbocharger is driven by exhaust gases from the exhaust.


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.