Reading JSON knowledge check Test your ability to read JSON. Question Title * What is your work email?This should be your Rewst email address Question Title * Which symbol in JSON is used to group related information, like a folder holding details about one topic? Square brackets [ ] Curly braces { } Colon : Quotation marks "" Question Title * In JSON, square brackets [ ] are used to represent a __________. List String Number Key-value pair Question Title * You’re reviewing a JSON file that includes this entry:"Location": { "City": "New Orleans", "State": "Louisiana" }What do the curly braces { } indicate? A list of items A nested structure with key-value pairs A single string value A Boolean value Question Title * You’re reviewing the following JSON entry:"Location": {"Restaurant": "The Fancy Fork","City": "New Orleans"}What does the "Location" key contain? A single string value A list of items with more key-value pairs A nested structure with more key-value pairs A Boolean value Question Title * In JSON, text data is always enclosed in __________. Curly braces { } Square brackets [ ] Quotation marks "" Colons : Question Title * Which of the following is an example of a Boolean value in JSON? "True" true "Yes" "no" Question Title * You’re looking at a JSON entry:"Completed": trueWhat does this entry indicate? The task is not yet done. The task is finished. The task contains a list of steps. The task requires a number value. Done