Microsoft Exam Questions

For each of the following statements, select Yes if the statement is true.

HOTSPOT
You have the following code:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

Answer:

Explanation:
Note:
* CustomerID is declared private.
* CompanyName is declted protected.
* State is declared protected.

The protected keyword is a member access modifier. A protected member is accessible from within
the class in which it is declared, and from within any class derived from the class that declared this
member.