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.

Questions and Answers

Answer : B

Explanation

Completeness: Format should be able to represent a resource completely. For example, a resource can contain another resource. Format should be able to represent simple as well as complex structures of resources.

Q 4 - Which of the following HTTP method should be used to get status of method availability in RESTful web service?

A - GET

B - HEAD

C - PUT

D - OPTIONS

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 can set the time limit of caching?

A - Public

B - Private

C - no-cache/no-store

D - max-age

Answer : D

Explanation

max-age directive indicates that the caching is valid up to max-age in seconds. After this, client has to make another request.

Q 6 - Which of the following HTTP Status code means OK, shows success?

A - 200

B - 201

C - 204

D - 304

Answer : A

Explanation

HTTP Status Code 200 means OK, shows success.

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 value in path?

A - @PathParam

B - @QueryParam

C - @MatrixParam

D - @HeaderParam

Answer : A

Explanation

@PathParam − Binds the parameter passed to method to a value in path.

Q 9 - URI of HTTP request indicates HTTP methods to be executed by RESTful Web services.

A - false

B - true

Answer : A

Explanation

HTTP Verb − Indicates HTTP methods such as GET, POST, DELETE, PUT etc.

Q 10 - As HTTP is itself a statelessness protocol, RESTful Web services work seamlessly with HTTP protocol.

A - true

B - false

Answer : A

Explanation

As HTTP is itself a statelessness protocol, RESTful Web services work seamlessly with HTTP protocol.

restful_questions_answers.htm
Advertisements