nerdexam
Cisco

200-301 · Question #1548

Refer to the exhibit. Which type of JSON data is represented?

The correct answer is B. array. The JSON data structure represented by square brackets [] is an array, which is an ordered collection of values.

Submitted by ashley.k· Mar 5, 2026Automation and Programmability

Question

Refer to the exhibit. Which type of JSON data is represented?

Options

  • Anumber
  • Barray
  • Cobject
  • Dstring

How the community answered

(59 responses)
  • A
    3% (2)
  • B
    95% (56)
  • C
    2% (1)

Why each option

The JSON data structure represented by square brackets `[]` is an array, which is an ordered collection of values.

Anumber

A number in JSON is a simple numerical value (e.g., 123, 3.14), not a structured collection defined by brackets.

BarrayCorrect

In JSON, square brackets `[]` explicitly denote an array, which is an ordered sequence of zero or more values. Each value within the array can be of any valid JSON data type.

Cobject

An object in JSON is represented by curly braces `{}` and contains unordered key-value pairs, unlike an array.

Dstring

A string in JSON is a sequence of characters enclosed in double quotes (e.g., "example"), not a bracketed collection.

Concept tested: JSON data types and structures

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

Topics

#JSON#JSON data types#Data serialization

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice