Which of the following is in JSON data format?
a.
{
"user": "root",
"father": "Jason",
"mother": "Jamie",
"friend": "Luke"
}
b.
<users> <user> <name>root</name> </user> <user> <name>Jason</name> </user> <user> <name>Jamie</name> </user> <user> <name>Luke</name> </user> </users>
c.
root Jason Jamie Luke
d.
[users[root|Jason|Jamie|Luke]]
Explanation: A JSON data format is built from key/value pairs. For example, “father”: “Jason” is a key/value pair, where father is the key, and Jason is the value.
Exam with this question: CCNPv8 ENCOR Chapter 28: Do I Know This Already? Quiz Answers
Please login or Register to submit your answer