Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In C# specify access modifier for a method is equivalent to get and set

Tags:

c#

I'm learning for the Microsoft Exam 70-483. In this exercise the correct answers are A and F. In my opinion E is correct too. I think E is fully equivalent to A + F. Is it true?

Question: You are creating a class named Employee. The class exposes a string property named EmployeeType. The following code segment defines the Employee class. (Line numbers are included for reference only.)

01 public class Employee
02 {
03     internal string EmployeeType
04     {
05         get;
06         set;
07     }
08 }

The EmployeeType property value must be accessed and modified only by code within the Employee class or within a class derived from the Employee class.You need to ensure that the implementation of the EmployeeType property meets the requirements. Which two actions should you perform? (Each correct answer represents part of the complete solution. Choose two.)

A. Replace line 05 with the following code segment: protected get;

B. Replace line 06 with the following code segment: private set;

C. Replace line 03 with the following code segment: public string EmployeeType

D. Replace line 05 with the following code segment: private get;

E. Replace line 03 with the following code segment: protected string EmployeeType

F. Replace line 06 with the following code segment: protected set;

like image 517
FDB Avatar asked Sep 21 '16 12:09

FDB


1 Answers

There must be an error in your question. You can't choose 2 responses and answer the question. The only correct answer is E

  1. You can't have an access modifier for both getter and setter (so A+F is wrong)
  2. Access modifier on getter OR setter must be more restrictive than the property's access modifier. protected is not more restrictive than internal.
like image 58
krimog Avatar answered Oct 13 '22 11:10

krimog