Recall & Review
beginner
What does JSON stand for?
JSON stands for JavaScript Object Notation. It is a simple format to store and exchange data in a way that is easy for humans to read and write.
Click to reveal answer
beginner
Why is JSON considered human-readable?
JSON uses plain text with clear structure using braces, brackets, and key-value pairs, making it easy for people to understand and edit without special tools.
Click to reveal answer
beginner
Which characters are used to define an object and an array in JSON?
In JSON, curly braces { } define an object, and square brackets [ ] define an array.
Click to reveal answer
beginner
How are key-value pairs written in JSON?
Key-value pairs in JSON are written as "key": value, where the key is a string in double quotes, followed by a colon and the value.
Click to reveal answer
beginner
What types of values can JSON have?
JSON values can be strings, numbers, objects, arrays, true, false, or null.
Click to reveal answer
Which symbol is used to start a JSON object?
✗ Incorrect
JSON objects start with curly braces { }.
In JSON, how are keys written?
✗ Incorrect
JSON keys must be strings enclosed in double quotes.
Which of these is NOT a valid JSON value?
✗ Incorrect
"undefined" is not a valid JSON value.
What does JSON primarily help with?
✗ Incorrect
JSON is designed to store and exchange data in a human-readable way.
Which of these is a valid JSON array?
✗ Incorrect
Square brackets [ ] define arrays in JSON.
Explain what JSON is and why it is useful for human-readable data exchange.
Think about how JSON looks and why people like to use it.
You got /4 concepts.
Describe the basic syntax rules of JSON including how objects and arrays are represented.
Focus on the symbols and structure used in JSON.
You got /4 concepts.