- 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 depicts best practice, Linkablity for resource representation in REST?
Answer : C
Explanation
Linkablity: A resource can have a linkage to another resource, a format should be able to handles such situations.
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 fetch resource using RESTful web service?
Answer : A
Explanation
GET opearations should be used to fetch resource using RESTful web service.
Q 5 - Which of the following directive of Cache Control Header of HTTP response indicates that resource is cachable by any component?
Answer : A
Explanation
Public directive indicates that resource is cachable by any component.
Q 6 - Which of the following HTTP Status code means NOT FOUND, states that method is not available?
Answer : C
Explanation
HTTP Status Code 404 means NOT FOUND, states that method is not available.
Q 7 - Which of the following annotation of JAX RS API is used to annotate a method used to create resource?
Answer : C
Explanation
@PUT − HTTP Get request, used to create 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 - 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
POST operation can cause different result.