Which of the following statements a), b) or c) is false?
A.JSON objects are similar to Python lists. Each SON object contains a comma-separated list of property names and values, in curly braces. For example, the following JSON object might represent a client record: {"account": 100, "name": "Jones", "balance": 24.98}
B.JSON also supports arrays which, like Python lists, are comma-separated values in square brackets. For example, the following is an acceptable
C.JSON array of numbers: [100, 200, 300] Values in JSON objects and arrays can be strings in double quotes, numbers, JSON Boolean values true or false null (to represent no value, like None in Python), arrays and other JSON objects.
D. All of the above statements are true.



Answer :

Other Questions