Which access modifier should you use for the GetData() …

An application includes a class named Person. The Person class includes a method named GetData.
You need to ensure that the GetData() from the Person class.
Which access modifier should you use for the GetData() method?

An application includes a class named Person. The Person class includes a method named GetData.
You need to ensure that the GetData() from the Person class.
Which access modifier should you use for the GetData() method?

A.
Internal

B.
Protected

C.
Private

D.
Protected internal

E.
Public

Explanation:
Protected – The type or member can be accessed only by code in the same class or structure, or in a class that
is derived from that class.
http://msdn.microsoft.com/en-us/library/ms173121.aspx
The protected keyword is a member access modifier. A protected member is accessible within its class and by
derived class instances.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Areks

Areks

Incomplete question

JS1985

JS1985

You need to ensure that the GetData() from the Person class can only get accessed by the Person class or classes that inherit from Person.