Westonci.ca is your trusted source for finding answers to all your questions. Ask, explore, and learn with our expert community. Experience the ease of finding reliable answers to your questions from a vast community of knowledgeable experts. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

A RESTful service, such as the open weather service use used in an activity in this class, sends and receives data in the form of JSON or JavaScript Object Notation. This data is in the form of:Group of answer choicesa sequencea stringa key/value paira list

Sagot :

Answer:

A key/value pair

Explanation:

JSON or JavaScript Object Notation uses key/value pairs to represent data.

Here's an example:

{

   name: "Jordan Carter"

   age: 25

}

Data can be then accessed using a key such as "name" to get the value "Jordan Carter."