- 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 - Which of the following is correct about web services?
Answer : C
Explanation
A web service is a collection of open protocols and standards used for exchanging data between applications or systems. Software applications written in various programming languages and running on various platforms can use web services to exchange data over computer networks like the Internet in a manner similar to inter-process communication on a single computer.
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 is correct about URI in RESTful web services?
A - Each resource in REST architecture is identified by its URI.
B - Purpose of an URI is to locate a resource(s) on the server hosting the web service.
Answer : C
Explanation
Each resource in REST architecture is identified by its URI. Purpose of an URI is to locate a resource(s) on the server hosting the web service.
Q 4 - Which of the following HTTP method should be used to delete resource using RESTful web service?
Answer : B
Explanation
DELETE opearations should be used to delete resource using RESTful web service.
Q 5 - Which of the following directive of Cache Control Header of HTTP response indicates that resource is not cachable?
Answer : C
Explanation
no-cache/no-store directive indicates that resource is not cachable.
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?
B - It also provides supports for creating clients for RESTful web services.
Answer : C
Explanation
Both of the above options are correct.
Q 8 - Which of the following annotation of JAX RS API binds the parameter passed to method to a Cookie?
Answer : A
Explanation
@CookieParam − Binds the parameter passed to method to a Cookie.
Q 9 - RESTful web services use HTTP methods to implement the concept of REST architecture.
Answer : A
Explanation
RESTful web services use HTTP methods to implement the concept of REST architecture.
Answer : A
Explanation
GET opearations should be readonly.