Distinguish between function procedure and event procedure as used in Visual Basic programming language.
Answer:
Function Procedure
Definition: A function procedure is a block of code that performs a specific task, returns a value, and can be called from other parts of the program.
Event Procedure
Definition: An event procedure is a block of code that executes in response to an event, such as a user action (click, load, etc.) on a control.