213,408 views
5 votes
5 votes
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

User Raveturned
by
2.8k points

1 Answer

22 votes
22 votes

Answer:

A key/value pair

Step-by-step 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."

User Lockjaw
by
2.7k points