Matching
Match each item with a statement below.
Premises:
Includes methods and events
Used in a Property procedure header to indicate that an application can set the property's value, but it cannot retrieve the value
Used to declare a variable that is not visible to applications that contain an instance of the class
Used to create an object
Allows an application to assign a value to the Private variable associated with a property
Allows an application to retrieve the contents of the Private variable associated with a property
Can be used to create a Public property
Used in a Property procedure header to indicate that you are creating a property whose value can be retrieved by an application but cannot be set by the application
Characteristics that describes the object
Responses:
Set block
Property procedure
New keyword
ReadOnly keyword
WriteOnly keyword
Private keyword
Get block
behaviors
attributes
Correct Answer:
Premises:
Responses:
Includes methods and events
Used in a Property procedure header to indicate that an application can set the property's value, but it cannot retrieve the value
Used to declare a variable that is not visible to applications that contain an instance of the class
Used to create an object
Allows an application to assign a value to the Private variable associated with a property
Allows an application to retrieve the contents of the Private variable associated with a property
Can be used to create a Public property
Used in a Property procedure header to indicate that you are creating a property whose value can be retrieved by an application but cannot be set by the application
Characteristics that describes the object
Premises:
Includes methods and events
Used in a Property procedure header to indicate that an application can set the property's value, but it cannot retrieve the value
Used to declare a variable that is not visible to applications that contain an instance of the class
Used to create an object
Allows an application to assign a value to the Private variable associated with a property
Allows an application to retrieve the contents of the Private variable associated with a property
Can be used to create a Public property
Used in a Property procedure header to indicate that you are creating a property whose value can be retrieved by an application but cannot be set by the application
Characteristics that describes the object
Responses:
Related Questions
Q32: A(n) _ encapsulates all of the attributes
Q33: You should use _ to name a
Q34: You can write a(n) _ as either
Q35: Although you can define a class that
Q36: To instantiate a class-level object variable, you
Q38: When an application needs to assign data
Q39: In OOP, the term _ means to
Q40: By convention, the names of the Private
Q41: The Get statement begins with the keyword
Q42: What is a constructor? What is the