- 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 component of HTTP request is used to identify the resource on server?
Answer : B
Explanation
URI − Uniform Resource Identifier (URI) to identify the resource on server.
Q 3 - Which of the following HTTP method should be idempotent in nature?
Answer : B
Explanation
PUT opearations should be idempotent, means their result will always same no matter how many times these operations are invoked.
Q 4 - Which of the following HTTP method should be read only in nature?
Answer : A
Explanation
GET opearations should be read only.
Q 5 - Which of the following directive of Cache Control Header of HTTP response indicates that resource is cachable by only client and server?
Answer : B
Explanation
Private directive indicates that resource is cachable by only client and server, no intermediary can cache the resource.
Q 6 - Which of the following HTTP Status code means OK, shows success?
Answer : A
Explanation
HTTP Status Code 200 means OK, shows success.
Q 7 - Which of the following is correct about JAX-RS?
Answer : C
Explanation
Both of the above options are correct.
Q 8 - Which of the following annotation of JAX RS API assigns a default value to a parameter passed to method?
Answer : C
Explanation
@DefaultValue − Assigns a default value to a parameter passed to method.
Q 9 - A RESTful web service client sends a message in form of a Gopher Request and server responds in form of a HTTP Response.
Answer : B
Explanation
A RESTful web service client sends a message in form of a HTTP Request and server responds in form of a HTTP Response.
Answer : B
Explanation
Status/Response Code − Indicate Server status for the requested resource.