In VB, Standard modules and Class modules. provides three kind of property procedures but following not include in this

[amp_mcq option1=”property let procedure” option2=”property get procedure” option3=”property set procedure” option4=”property post procedure” correct=”option4″]

The correct answer is D. property post procedure.

A property is a variable that is accessed through a special set of procedures called property procedures. There are three types of property procedures:

  • Property Get: This procedure is used to get the value of the property.
  • Property Let: This procedure is used to set the value of the property.
  • Property Set: This procedure is used to set the value of the property and also to perform any other actions that need to be done when the property is set.

A property post procedure is a procedure that is called after a property has been set. Property post procedures are not supported in VB.