Asked by Adrianaya Roettger on May 21, 2024

verifed

Verified

Which of the following statements creates a function named Bonus with an argument named Salary?

A) Bonus(Salary) = Function
B) Function Bonus(Salary)
C) Function (Bonus,Salary)
D) '=Function(Bonus,Salary)

Function Procedure

A type of subroutine in programming designed to perform a specific task and potentially return a value.

Argument

A value or reference passed to a function, procedure, or command in programming.

  • Understand the process of designing and implementing functions and procedures within modules in Access.
  • Acquire knowledge of the framework and naming rules in VBA coding.
verifed

Verified Answer

DA
Dasia AlcalaMay 25, 2024
Final Answer :
B
Explanation :
Option B creates a function named Bonus with an argument named Salary. The correct syntax to create a function is "Function function_name(argument_name)" where "function_name" is the name of the function and "argument_name" is the variable name that will take inputs.