Private fields of a base class can be accessed in a derived class
a. by calling Private methods declared in the base class
b. by calling Public or Protected methods declared in the base class
c. directly
d. All of the above
b. by calling Public or Protected methods declared in the base class
You might also like to view...
What acronym is used to refer to modern peer-to-peer applications?
A. P2P B. PPTP C. VPN D. L2TP
A __________ is an enterprise facility that houses a large number of servers, storage devices, and network switches and equipment.
Fill in the blank(s) with the appropriate word(s).
To automate the task of clear existing values and displaying instructions for users to enter specific data, you would create a(n) ________
A) argument B) event C) procedure D) macro
what code will be assigned to strStatus variable when the intLevel variable contains the number 4?
Select Case intLevel Case 1, 2 strStatus = "Bronze" Case 3 To 5 strStatus = "Silver" Cases 6, 7 strStatus = "Gold" Case Else strStatus = "Platinum" End Select