0
0
IOT Protocolsdevops~5 mins

JSON for human-readable data in IOT Protocols - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
A{
B[
C(
D<
In JSON, how are keys written?
ADouble quotes
BSingle quotes
CWithout quotes
DBackticks
Which of these is NOT a valid JSON value?
Atrue
B123
Cnull
Dundefined
What does JSON primarily help with?
AEncrypting data
BMaking data human-readable and easy to exchange
CCompressing files
DRunning programs
Which of these is a valid JSON array?
A{"name": "John"}
B(1, 2, 3)
C[1, 2, 3]
D"[1, 2, 3]"
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.