What is difference between procedural prog. Language
Answer Posted / joy
Events are caused by actions the user performs. For
example, clicking the mouse generates a mouse event,
pressing a key on the keyboard generates a keyboard event,
and so on. When a system event occurs, the operating system
is responsible for identifying and responding to the event.
Different operating systems implement this process in
various ways. However, all operating systems respond to the
system event by broadcasting a system event message. Any
application running on the system can react to the system
event by executing code written for that specific system
event.
In procedural-driven or top-down architectures, the
application executes a set of instructions in a specified
sequence to perform a task. The structure and sequence of
the program, not user actions, control the execution order
of a procedural-driven application. The program execution
begins in main and then flows through method calls and
control statements in a fairly predictable manner.
In an event-driven program, the program first waits for
events to occur, responds to those events, then returns to
waiting for the next event. How the program responds
depends on the code written for that specific event. The
order in which an event-driven program executes depends on
which events occur and on the order in which those events
occur. While the program waits for the next event, it frees
up CPU resources that might be used to perform other
processing tasks.
| Is This Answer Correct ? | 75 Yes | 18 No |
Post New Answer View All Answers
How would you add elements in TreevieW Control.
It possible to call OLEDB's Features directly in VB without using any control?
How do you change the system menu (on the Control-Menu Box)?
What is the use of Active Control Property?
How many ways we can access file using VB?
What is the use of ActiveX Documents?
Which type of object requires this object?
What are the properties of datacontrol?
Data Control missing from toolbox when I use VB under NT3.5. Why?
Types of Resultsets.
How would you Create a Query Builder and Explain its uses
by writing MACRO CODE,i want to retrive data from one spead sheet to another UI (workbook). control will search cell by cell for each row and load the data in another workbook(UI). ex: custdetails custname lastname locaton mobile pincode custdetails raj tony hyd 555555 521245 servcreqrd srvce# srvcename location srvcepincode servcreqrd 754 drilling hyd 521784 for the above example in the another workbook retrive data like this custname Raj srvce# 754 srvcepincode 521784. while retrieving data control will search cell by cell for each row.
Whether HTML supports multimedia: and document links?
What is the need of tabindex property is label control.
___,__,___ are the type of combo box?