Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Language is Java. Any help is appreciated, thank you. Assume that Employee has b

ID: 3825934 • Letter: L

Question

Language is Java. Any help is appreciated, thank you.

Assume that Employee has been defined as a class in a Java program. Consider the declaration "Employee emp;". Does emp point to an Employee object? [yes or no]:

QUESTION 2:   


Does emp refer to an Employee object? [yes or no]:

QUESTION 3:   


Is emp of type pointer to Employee object? [yes or no]:

QUESTION 4:   


Does emp contain an Employee object? [yes or no]:

QUESTION 5:   


Can emp later be assigned an Employee object? [yes or no]:

QUESTION 6:   


Is emp of type reference-to-Employee? [yes or no]:

QUESTION 7:   


Can emp later refer to an -Employee? [yes or no]:

QUESTION 8:   


Can emp later point to an -Employee? [yes or no]:

QUESTION 9:   


Is emp of type Employee? [yes or no]:

QUESTION 10:   


Is emp a class? [yes or no]:

QUESTION 11:   


Is emp an object? [yes or no]:

Explanation / Answer

Assume that Employee has been defined as a class in a Java program. Consider the declaration

"Employee emp;".

Does emp point to an Employee object? [yes or no]:
Yes, emp is an Employee object

QUESTION 2:   


Does emp refer to an Employee object? [yes or no]:

Yes, emp to refer to an empoyee object

QUESTION 3:   


Is emp of type pointer to Employee object? [yes or no]:

No, there is no pointer

QUESTION 4:   


Does emp contain an Employee object? [yes or no]:

Yes, emp contains an Employee object