
- RESTful Tutorial
- 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
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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 - What REST stands for?
Answer : B
Explanation
REST stands for REpresentational State Transfer.
Q 2 - Which of the following component of HTTP request indicates HTTP methods such as GET, POST, DELETE, PUT etc.?
Answer : A
Explanation
Verb − Indicates HTTP methods such as GET, POST, DELETE, PUT etc.
Q 3 - Which of the following is a best practice to create a standard URI for a web service?
Answer : D
Explanation
All of the above options are correct.
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 OK, shows success?
Answer : A
Explanation
HTTP Status Code 200 means OK, shows success.
Q 7 - What JAX-RS stands for?
A - Just API for RESTful Web Services.
B - Joint API for RESTful Web Services.
Answer : C
Explanation
JAX-RS stands for JAVA API for RESTful Web Services.
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 - A web service is a collection of open protocols and standards used for exchanging data between applications or systems.
Answer : A
Explanation
A web service is a collection of open protocols and standards used for exchanging data between applications or systems.
Answer : A
Explanation
Web services can treat each method request independently.