- 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 correct about resource representation in REST?
A - REST uses various representations to represent a resource where text, JSON, XML.
B - XML and JSON are the most popular representations of resources.
Answer : C
Explanation
REST uses various representations to represent a resource where text, JSON, XML. XML and JSON are the most popular representations of resources.
Q 2 - Which of the following component of HTTP request contains message content or Resource representation?
Answer : A
Explanation
Request Body − Message content or Resource representation.
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 used to get status of method availability in RESTful web service?
Answer : B
Explanation
HEAD opearations should be used to get status of method availability in RESTful web service.
Q 5 - Which of the following directive of Cache Control Header of HTTP response provides indication to server to revalidate resource if max-age has passed?
Answer : A
Explanation
must-revalidate directive provides indication to server to revalidate resource if max-age has passed.
Q 6 - Which of the following HTTP Status code means NOT MODIFIED, used to reduce network bandwidth usage in case of conditional GET requests?
Answer : D
Explanation
HTTP Status Code 304 means NOT MODIFIED, used to reduce network bandwidth usage in case of conditional GET requests.
Q 7 - Which of the following annotation of JAX RS API is used to annotate a method used to delete resource?
Answer : A
Explanation
@DELETE − HTTP Get request, used to delete resource.
Q 8 - Which of the following annotation of JAX RS API binds the parameter passed to method to a HTTP header?
Answer : D
Explanation
@HeaderParam − Binds the parameter passed to method to a HTTP header.
Q 9 - In REST architecture, a REST Server simply provides access to resources and REST client accesses and presents the resources.
Answer : B
Explanation
In REST architecture, a REST Server simply provides access to resources and REST client accesses and presents the resources.
Answer : B
Explanation
Purpose of an URI is to locate a resource(s) on the server hosting the web service.