Podcast
Questions and Answers
Which of the following is a valid example of JSON format?
Which of the following is a valid example of JSON format?
- { name: 'John', age: 25 }
- { 'name': 'John', 'age': 25 }
- { name: 'John', age: '25' }
- { "name": "John", "age": 25 } (correct)
True or false: JSON format is a data interchange format.
True or false: JSON format is a data interchange format.
- True (correct)
- Neither true nor false
- Both true and false
- False
Which of the following is a characteristic of JSON format?
Which of the following is a characteristic of JSON format?
- It allows for functions
- It can represent complex data structures (correct)
- It is case-insensitive
- It supports comments