easy
Single Answer
0What is at the beginning of every JSON that helps you identify the format?
Answer Options
A
Three dashes
B
A square bracket
C
A double quote
D
A curly bracket
Correct Answer: D
Explanation
A JavaScript Object Notation (JSON) element always starts with a curly bracket, sometimes called a brace. If a file contains an array of JSON elements, it will start with a square bracket or square brace. If the file starts with three dashes, the file is most likely YAML.
json
data-formats
syntax