CiscoCisco
350-401 · Question #319
350-401 Question #319: Real Exam Question with Answer & Explanation
The correct answer is A: {Make": "Gocar", "Model": "Zoom", "Features": ["Power Windows", "Manual Drive", "Auto AC"]}. Valid JSON syntax requires keys and string values to be enclosed in double quotes, objects to be enclosed in curly braces, and arrays in square brackets with comma-separated elements.
Submitted by yuki_2020· Mar 6, 2026Automation
Question
Refer to the exhibit. What is the JSON syntax that is formed from the data?
Options
- A{Make": "Gocar", "Model": "Zoom", "Features": ["Power Windows", "Manual Drive", "Auto AC"]}
- B"Make": "Gocar", "Model": "Zoom", "Features": ["Power Windows", "Manual Drive", "Auto AC"]
- C{"Make": Gocar, "Model": Zoom, "Features": Power Windows, Manual Drive, Auto AC}
- D{"Make": ["Gocar", "Model": "Zoom"], Features": ["Power Windows", "Manual Drive", "Auto
Explanation
Valid JSON syntax requires keys and string values to be enclosed in double quotes, objects to be enclosed in curly braces, and arrays in square brackets with comma-separated elements.
Common mistakes.
- B. This option is missing the enclosing curly braces
{}required for a JSON object, making it an incomplete and invalid JSON document. - C. This option contains unquoted string values for 'Gocar' and 'Zoom' and an incorrectly formatted array for 'Features' that is not enclosed in square brackets and has unquoted elements.
- D. This option incorrectly formats the 'Make' key with an array value that includes 'Model', and the 'Features' array and the main object are not properly closed.
Concept tested. JSON data structure and syntax
Reference. https://www.json.org/json-en.html
Topics
#JSON syntax#Data serialization#Network programmability
Community Discussion
No community discussion yet for this question.