REST

 20 Minutes
 10 Questions


This test is designed to assess a candidate's knowledge of technology, REST, and related topics. The first part of the test will cover the basics of technology and REST, including topics such as HTTP methods, API design principles, and authentication protocols. The second part of the test will focus on OData, including topics such as query syntax, data manipulation operations, and service document structure.


Example Question:

Multiple-Choice
When issuing the following URL
http://demo.com/customers.json?length=2
You get the following JSON (as the reply)
[
{
customerId: 1,
name: "Oracle"
},
{
customerId: 2,
name: "Microsoft"
}
]
What is considered to be the REST resource?