Solved

CLASS Employee { //Variables

Question 79

Multiple Choice

CLASS Employee {
//Variables
String LastName;
String FirstName;
Real HourlyRate;
Integer HoursWorked;
Date HireDate;
String Job;
//Methods
Real Salary() ;
String GetLastName() ;
String GetFirstName() ;
String GetJob() ;}

-Which of the following is not part of the interface?


A) Real Salary() ;
B) String GetLastName() ;
C) Date HireDate
D) String GetFirstName() ;

Correct Answer:

verifed

Verified

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

Related Questions