Solved

Consider the Following Code Snippet

Question 76

Multiple Choice

Consider the following code snippet:
Public class Employee
{
Private String empName;
Public String getEmpName()
{ ) . . }
}
Which of the following statements is correct?


A) The getEmpName method can be accessed by any user of an Employee object.
B) The getEmpName method can be accessed only by methods of the Employee class.
C) The getEmpName method can be accessed only by methods of another class.
D) The getEmpName method cannot be accessed at all.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions