nerdexam
Cisco

200-301 · Question #1134

Refer to the exhibit. What does apple represent within the JSON data?

The correct answer is D. string. In JSON data, a sequence of Unicode characters enclosed in double quotes represents a string data type.

Submitted by carlos_mx· Mar 5, 2026

Question

Refer to the exhibit. What does apple represent within the JSON data?

Options

  • Aarray
  • Bobject
  • Cnumber
  • Dstring

How the community answered

(31 responses)
  • A
    3% (1)
  • B
    6% (2)
  • D
    90% (28)

Why each option

In JSON data, a sequence of Unicode characters enclosed in double quotes represents a string data type.

Aarray

An array is an ordered collection of values, denoted by square brackets `[]`, not a single word like 'apple' by itself.

Bobject

An object is an unordered collection of key-value pairs, denoted by curly braces `{}`, and 'apple' is not a key-value pair or an entire object.

Cnumber

A number in JSON represents numeric values (integers or floating-point) without quotes, whereas 'apple' is clearly text.

DstringCorrect

In JSON, 'apple' enclosed in double quotes (e.g., `"apple"`) is explicitly defined as a string data type. Strings are used to represent text values.

Concept tested: JSON string data type

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

Topics

#JSON data types#JSON string#Data representation

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice