- RESTful - Home
- RESTful - Introduction
- RESTful - Environment Setup
- RESTful - First Application
- RESTful - Resources
- RESTful - Messages
- RESTful - Addressing
- RESTful - Methods
- RESTful - Statelessness
- RESTful - Caching
- RESTful - Security
- RESTful - Java (JAX-RS)
- RESTful Useful Resources
- RESTful - Questions and Answers
- RESTful - Quick Guide
- RESTful - Useful Resources
- RESTful - Discussion
RESTful Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to RESTful Framework. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.
Q 1 - Which of the following is not a valid HTTP methods used in RESTful web services?
Answer : C
Explanation
DATE is not a HTTP Verb and is not a valid HTTP methods used in RESTful web services.
Q 2 - Which of the following protocol is used by RESTful web services as a medium of communication between client and server?
Answer : A
Explanation
RESTful web services make use of HTTP protocol as a medium of communication between client and server.
Q 3 - Which of the following is correct about addressing in RESTful web services?
A - Addressing refers to locating a resource or multiple resources lying on the server.
Answer : C
Explanation
Addressing refers to locating a resource or multiple resources lying on the server. It is analogous to locate a postal address of a person.
Q 4 - Which of the following HTTP method should be used to create resource using RESTful web service?
Answer : C
Explanation
PUT opearations should be used to create resource using RESTful web service.
Q 5 - Which of the following is a best practice for caching in RESTful web service?
B - Never keep expiry date too high.
Answer : D
Explanation
All of the above options are correct.
Q 6 - Which of the following HTTP Status code means BAD REQUEST, states that invalid input is provided e.g. validation error, missing data?
Answer : A
Explanation
HTTP Status Code 400 means BAD REQUEST, states that invalid input is provided e.g. validation error, missing data.
Q 7 - Which of the following annotation of JAX RS API is used to annotate a method used to fetch resource?
Answer : B
Explanation
@GET − HTTP Get request, used to fetch resource.
Q 8 - Which of the following annotation of JAX RS API binds the parameter passed to method to a query parameter in path?
Answer : B
Explanation
@QueryParam − Binds the parameter passed to method to a query parameter in path.
Q 9 - Which of the following annotation of JAX RS API is used to inject a context of the resource for example HTTPRequest as a context
Answer : D
Explanation
@Context − Context of the resource for example HTTPRequest as a context.
Answer : A
Explanation
Request Body − Contains Message content or Resource representation.