Question: What is the recommended method and URL pattern for retrieving a specific user?

  1. `GET /user/{id}`
  2. `GET /users/{id}`
  3. `GET /user?id={id}`
  4. `GET /users?id={id}`

Answer: The correct answer of the above question is Option B:`GET /users/{id}`