Qtr No. 213, New Town Yehlanka Indore 454775
You are working on a project that involves managing a list of employees. Each employee has a unique ID and a name. You want to create a generic class to handle this list.
The EmployeeList class is defined as follows:
public class EmployeeList<T>{
private List<T> employees;
public EmployeeList(){
employees=new ArrayList<>();
}
public void addEmployee(T employee){
employees.add(employee);
}
public T getEmployee(int id){
for(T employee : employees){
if(employee.getId()==id){
return employee;
}
}
return null;
}
}
Given the above code, which of the following statements is true?
The class EmployeeList can only hold objects of type Employee
The class EmployeeList can hold objects of any type
The class EmployeeList will not compile because it is missing a constructor
The class EmployeeList will not compile because the getEmployee method is missing a return statement
To get all Infosys Certified L1 Junior Java Programmer Exam questions Join Group https://bit.ly/infy_premium_group
We're passionate about offering best placement materials and courses!! A one stop place for Placement Materials. We daily post Offcampus updates and Placement Materials.
Qtr No. 213, New Town Yehlanka Indore 454775
admin@prepflix.in