nerdexam
Cisco

350-401 · Question #1302

Which JSON script is properly formatted? A. B. C. D.

The correct answer is C. {"furniture": { "type":"Sofa", "material":"cloth", "color":"blue" } }. Option C is correctly formatted JSON: it uses proper curly braces for objects, all string values are enclosed in double quotes, key-value pairs are separated by colons, and there is no trailing comma after the last property. JSON requires strict syntax adherence, and Option C…

Submitted by kwame.gh· Mar 6, 2026Understanding and applying proper JSON syntax and structure for data interchange and configuration, commonly tested in IT Fundamentals, Web Development, and Data/API integration certification domains.

Question

Which JSON script is properly formatted? A. B. C. D.

Options

  • A{"Lodging": { "type":"motel", "location":"Main Street, "contact":346-137-6187 } }
  • B{"Plates": { [ "use":"salad", "size":"small", "shape":"round" ] } }
  • C{"furniture": { "type":"Sofa", "material":"cloth", "color":"blue" } }
  • D{"Auto": { "maker":"Plymouth", "color":"green", "year":1970, } }

How the community answered

(31 responses)
  • A
    6% (2)
  • C
    90% (28)
  • D
    3% (1)

Explanation

Option C is correctly formatted JSON: it uses proper curly braces for objects, all string values are enclosed in double quotes, key-value pairs are separated by colons, and there is no trailing comma after the last property. JSON requires strict syntax adherence, and Option C satisfies all of these rules without any violations.

Topics

#JSON formatting#data serialization#syntax validation#web data formats

Community Discussion

No community discussion yet for this question.

Full 350-401 Practice