nerdexam
Cisco

200-301 · Question #431

Which JSON data type is an unordered set of attribute-value pairs?

The correct answer is C. object. A JSON object is a fundamental data type represented as an unordered collection of key-value pairs.

Submitted by renata2k· Mar 5, 2026Automation and Programmability

Question

Which JSON data type is an unordered set of attribute-value pairs?

Options

  • Aarray
  • Bstring
  • Cobject
  • DBoolean

How the community answered

(22 responses)
  • A
    5% (1)
  • C
    91% (20)
  • D
    5% (1)

Why each option

A JSON object is a fundamental data type represented as an unordered collection of key-value pairs.

Aarray

An array in JSON is an ordered list of values, enclosed in square brackets `[]`, not an unordered set of attribute-value pairs.

Bstring

A string in JSON is a sequence of characters, representing a single value, not a collection of attribute-value pairs.

CobjectCorrect

A JSON object is defined by curly braces `{}` and contains an unordered set of key-value pairs, where each key is a string and each value can be any valid JSON data type. This structure allows for representing complex data structures with named attributes.

DBoolean

A Boolean in JSON represents a true or false value, a single data point, not a collection.

Concept tested: JSON Object Data Type

Source: https://www.json.org/json-en.html

Topics

#JSON#data types#object#REST API

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice