Question 342 of 367 from exam 200-301-CCNA: Implementing and Administering Cisco Solutions

Question 342 of 367 from exam 200-301-CCNA: Implementing and Administering Cisco Solutions

Question

Which output displays a JSON data representation? A.

{

}

“response”: {
“taskid": Q;

“url “string”
b
“version: ‘string’

B.

{

}

“response”. {
“taskid”. §,
“url “string”
h
“version’- “string”

C.

{

}

“response” {
“taskid”:

“url “string”
h
“version: ‘string’

D.

{
‘response’, {
‘taskid’, Q;
‘url’, “string”

k

‘version’, “string”
}

Explanations

C.

JSON data is written as name/value pairs.

A name/value pair consists of a field name (in double quotes), followed by a colon, followed by a value: name:Mark JSON can use arrays.

Array values must be of type string, number, object, array, boolean or null.

For example: { name:John, age:30, cars:[ Ford, BMW, Fiat ] } JSON can have empty object like taskId:{}