Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Microsoft Exam 98-361 Topic 7 Question 1 Discussion

Actual exam question for Microsoft's exam
Question #: 1
Topic #: 7
[All Questions]

You need to allow a consumer of a class to modify a private data member.

What should you do?

Show Suggested Answer Hide Answer
Suggested Answer: C

In this example (see below), the Employee class contains two private data members, name and salary. As private members, they cannot be accessed except by member methods. Public methods named GetName and Salary are added to allow controlled access to the private members. The name member is accessed by way of a public method, and the salary member is accessed by way of a public read-only property.

Note: The private keyword is a member access modifier. Private access is the least permissive access level. Private members are accessible only within the body of the class or the struct in which they are declared

Example:

class Employee2

{

privatestring name = "FirstName, LastName";

privatedouble salary = 100.0;

publicstring GetName()

{

return name;

}

publicdouble Salary

{

get { return salary; }

}

}


Contribute your Thoughts:

Currently there are no comments in this discussion, be the first to comment!


Save Cancel