The correct answer is: C. procedure
A procedure is a series of commands and properties that perform a specific task. It is a self-contained unit of code that can be called from other parts of the program. Procedures are often used to group related code together and to make the code more modular and reusable.
An event is an action that occurs in a program, such as a mouse click or a key press. Events can be handled by procedures, which are called in response to the event.
A property is a characteristic of an object, such as its size or color. Properties can be set and retrieved using procedures.
A macro is a series of commands that are stored together and can be executed by a single command. Macros are often used to automate repetitive tasks.
Here is an example of a procedure:
procedure PrintHelloWorld()
MsgBox "Hello, world!"
end procedure
This procedure prints the message “Hello, world!” to the screen. It can be called from other parts of the program, such as the following code:
PrintHelloWorld()
This code will print the message “Hello, world!” to the screen.