54.5k views
5 votes
In a Property procedure, the code contained in the ____ block allows an application to retrieve the contents of the Private variable associated with the property.

User Yunhasnawa
by
5.1k points

1 Answer

5 votes

Answer:

Get

Step-by-step explanation:

we have 2 kinds of property blocks

Get

Set

Get property block is used to retrieve the value of private variable of a given class.

Set Property block is used to set the value of private variables of the class

User Gasoon
by
5.6k points