200-301 · Question #1493
Refer to the exhibit. Which type of JSON data is shown?
The correct answer is C. object. This question asks to identify the type of JSON data shown in an exhibit, implying a common structured data format.
Question
Options
- ABoolean
- Bstring
- Cobject
- Dsequence
How the community answered
(29 responses)- A3% (1)
- C90% (26)
- D7% (2)
Why each option
This question asks to identify the type of JSON data shown in an exhibit, implying a common structured data format.
A 'Boolean' in JSON represents a true or false value, not an entire structured data type that would encompass multiple pieces of information.
A 'string' in JSON represents a sequence of characters enclosed in double quotes, which is a primitive data type and not a composite structure shown as a general JSON data type.
A JSON 'object' is a fundamental data structure represented by curly braces `{}` and consists of an unordered collection of key-value pairs, which is a common way to structure data in JSON.
'Sequence' is not a standard, officially defined data type in the JSON specification; arrays are the closest concept to an ordered sequence of values.
Concept tested: JSON data types (object)
Source: https://www.json.org/json-en.html
Topics
Community Discussion
No community discussion yet for this question.