Valid 350-401 Dumps shared by ExamDiscuss.com for Helping Passing 350-401 Exam! ExamDiscuss.com now offer the newest 350-401 exam dumps, the ExamDiscuss.com 350-401 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 350-401 dumps with Test Engine here:
Refer to the exhibit. What is the JSON syntax that is formed from the data?
Correct Answer: A
Explanation JSON syntax structure: + uses curly braces {} to hold objects and square brackets [] to hold arrays + JSON data is written as key/value pairs + A key/value pair consists of a key (must be a string in double quotation marks ""), followed by a colon :, followed by a value. For example: "name":"John" + Each key must be unique + Values must be of type string, number, object, array, boolean or null + Multiple key/value within an object are separated by commas , JSON can use arrays. Arrays are used to store multiple values in a single variable. For example: { "name":"John", "age":30, "cars":[ "Ford", "BMW", "Fiat"] } In the above example, "cars" is an array which contains three values "Ford", "BMW" and "Fiat". Note: Although our correct answer above does not have curly braces to hold objects but it is still the best choice here.