nerdexam
Cisco

200-301 · Question #1258

What is represented beginning with line 1 and ending with line 5 within this JSON schema?

The correct answer is C. array. A JSON structure beginning with an opening square bracket and ending with a closing square bracket, potentially spanning multiple lines, represents an array.

Submitted by dimitri_ru· Mar 5, 2026Automation and Programmability

Question

What is represented beginning with line 1 and ending with line 5 within this JSON schema?

Exhibits

200-301 question #1258 exhibit 1
200-301 question #1258 exhibit 2

Options

  • Akey
  • Bobject
  • Carray
  • Dvalue

How the community answered

(40 responses)
  • A
    3% (1)
  • C
    95% (38)
  • D
    3% (1)

Why each option

A JSON structure beginning with an opening square bracket and ending with a closing square bracket, potentially spanning multiple lines, represents an array.

Akey

A key is a string label within an object that identifies a value, not a multi-line structure encompassing other data.

Bobject

An object in JSON is an unordered collection of key-value pairs enclosed in curly braces (`{}`), not square brackets.

CarrayCorrect

In JSON, an array is an ordered collection of values enclosed in square brackets (`[]`), where each value can be a string, number, boolean, null, object, or another array, and it often spans multiple lines for readability when containing multiple elements.

Dvalue

A value is a single piece of data associated with a key or an element in an array, not the entire multi-line collection itself.

Concept tested: JSON data types (array structure)

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

Topics

#JSON structure#API data formats#Network automation

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice