Quiz: REST and HTTP Questions
Browse questions from Quiz: REST and HTTP. Each question has options and an explanation.
Questions — Page 1 of 1
- Which HTTP method is normally used to read a resource?
- GET should normally be used for read operations.
- Which status code means a resource was created?
- 404 means the server successfully created a resource.
- What is the difference between 401 and 403?
- 403 Forbidden can happen even when the user is logged in.
- What does @RestController help Spring Boot do?
- @RestController is a Hibernate-only annotation.