Question: You need to remove an Event based on it;s id from your API, Which code snippet defines that request in Retrofit?

  1. @DELETE("events)
  2. @DELETE("events/{id}")
  3. @REMOVE("events/{id}")
  4. @DELETE("events/{id}")

Answer: The correct answer of the above question is Option D:@DELETE("events/{id}")