Question 4 of 72 from exam 1Z0-900: Java EE 7 Application Developer

Question 4 of 72 from exam 1Z0-900: Java EE 7 Application Developer

Question

Given the code fragment:

‘@Path ("Employees")
public class EmployeesResource (

‘@lnject privace EmployeeManager em;

(@Get

ePath("fid:[A-Z] [0-9]+}")

public Employee getEmployee(@PathParam("id") String id) {

return em.findEmployee(id);

)

}

Which URL triggers the invocation of the getEmployee () method?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

B.