{"id":710,"date":"2023-05-04T22:26:57","date_gmt":"2023-05-04T22:26:57","guid":{"rendered":"https:\/\/emorah.com\/story\/?p=710"},"modified":"2023-05-04T22:26:58","modified_gmt":"2023-05-04T22:26:58","slug":"json-fresco-play-mcqs-answers","status":"publish","type":"post","link":"https:\/\/emorah.com\/story\/fresco-play\/json-fresco-play-mcqs-answers\/","title":{"rendered":"JSON Fresco Play MCQs Answers"},"content":{"rendered":"\n<p>JSON Fresco Play MCQs Answers<\/p>\n\n\n\n<p><strong>Quiz 1 on JSON Basics<\/strong><\/p>\n\n\n\n<p>1.True or False: JSON objects are typed while XML data is typeless.<\/p>\n\n\n\n<ol><li>False<\/li><li>True<\/li><\/ol>\n\n\n\n<p>Answer: 2)True<\/p>\n\n\n\n<p>2.Who is the Father of JSON?<\/p>\n\n\n\n<ol><li>Hakon Wium Lie<\/li><li>Douglas Crockford<\/li><li>Tim Berners-Lee<\/li><li>Brendan Eich<\/li><\/ol>\n\n\n\n<p>Answer: 2)Douglas Crockford<\/p>\n\n\n\n<p>3.Why JSON over XML?<\/p>\n\n\n\n<ol><li>Lighter but not faster than XML as on-the-wire data format<\/li><li>XML data are not string by default<\/li><li>JSON objects are typeless while XML data is typed<\/li><li>Retrieving values is as easy as reading from an object property<\/li><\/ol>\n\n\n\n<p>Answer: 4)Retrieving values is as easy as reading from an object property<\/p>\n\n\n\n<p>4.True or False: Objects can contain multiple name\/values pairs.<\/p>\n\n\n\n<ol><li>True<\/li><li>False<\/li><\/ol>\n\n\n\n<p>Answer: 1)True<\/p>\n\n\n\n<p>5.What is the standard MIME type for JSON?<\/p>\n\n\n\n<ol><li>Jsn\/ application<\/li><li>application\/jsn<\/li><li>Json\/application<\/li><li>application\/json<\/li><\/ol>\n\n\n\n<p>Answer: 4)application\/json<\/p>\n\n\n\n<p>6.What is\/are the correct statements about JSON?<\/p>\n\n\n\n<ol><li>JSON is a lightweight text-based open standard designed for human-readable data interchange.<\/li><li>JSON is language-independent, with parsers for each language supported<\/li><li>The JSON format is often used for serializing and transmitting structured data over a network connection.<\/li><li>All of theoptions<\/li><\/ol>\n\n\n\n<p>Answer: 4)All of theoptions<\/p>\n\n\n\n<p>7.True or False: Data can be readily accessible using JSON objects.<\/p>\n\n\n\n<ol><li>False<\/li><li>True<\/li><\/ol>\n\n\n\n<p>Answer: 2)True<\/p>\n\n\n\n<p><strong>JSON Final Assessment<\/strong><\/p>\n\n\n\n<p>1.Why JSON over XML?<\/p>\n\n\n\n<ol><li>XML data are not string by default<\/li><li>Lighter but not faster than XML as on-the-wire data format<\/li><li>Retrieving values is as easy as reading from an object property<\/li><li>JSON objects are typeless while XML data is typed<\/li><\/ol>\n\n\n\n<p>Answer: 3)Retrieving values is as easy as reading from an object property<\/p>\n\n\n\n<p>2.Functions added undef Native JSON is ____________________.<\/p>\n\n\n\n<ol><li>exec()<\/li><li>parse()<\/li><li>stringify()<\/li><li>stringify() and parse()<\/li><\/ol>\n\n\n\n<p>Answer: 4)stringify() and parse()<\/p>\n\n\n\n<p>3.JavaScript function JSON.parse() is to convert text into string.<\/p>\n\n\n\n<ol><li>True<\/li><li>False<\/li><\/ol>\n\n\n\n<p>Answer: 2)False<\/p>\n\n\n\n<p>4.Which would be better option to consider in a environment with distributed set-up with multiple small JSON files ?<\/p>\n\n\n\n<ol><li>Jackson<\/li><li>All the options<\/li><li>GSON<\/li><li>JSON simple<\/li><\/ol>\n\n\n\n<p>Answer: 3)GSON<\/p>\n\n\n\n<p>5.True or False: In JSON syntax, square brackets can&#8217;t holds arrays.<\/p>\n\n\n\n<ol><li>False<\/li><li>True<\/li><\/ol>\n\n\n\n<p>Answer: 1)False<\/p>\n\n\n\n<p>6.Looping an Array is possible in JSON.<\/p>\n\n\n\n<ol><li>False<\/li><li>True<\/li><\/ol>\n\n\n\n<p>Answer: 2)True<\/p>\n\n\n\n<p>7.What is the correct way to write a JSON array?<\/p>\n\n\n\n<ol><li>var colors = 1 = (&#8220;red&#8221;), 2 = (&#8220;green&#8221;), 3 = (&#8220;blue&#8221;)<\/li><li>var colors = &#8220;red&#8221;, &#8220;green&#8221;, &#8220;blue&#8221;<\/li><li>var colors = (1:&#8221;red&#8221;, 2:&#8221;green&#8221;, 3:&#8221;blue&#8221;)<\/li><li>var colors = [&#8220;red&#8221;, &#8220;green&#8221;, &#8220;blue&#8221;]<\/li><\/ol>\n\n\n\n<p>Answer: 4)var colors = [&#8220;red&#8221;, &#8220;green&#8221;, &#8220;blue&#8221;]<\/p>\n\n\n\n<p>8.FasterXML\u2019s Jackson can handle both JSON\/non-JSON encodings.<\/p>\n\n\n\n<ol><li>True<\/li><li>False<\/li><\/ol>\n\n\n\n<p>Answer: 1)True<\/p>\n\n\n\n<p>9.What is the true option applicable for JSON?<\/p>\n\n\n\n<ol><li>An unordered list of values<\/li><li>JSON object begins with { (left brace) and ends with } (right brace)<\/li><li>An ordered list of strings<\/li><li>JSON Array begins with { (left brace) and ends with } (right brace)<\/li><\/ol>\n\n\n\n<p>Answer: 2)JSON object begins with { (left brace) and ends with } (right brace)<\/p>\n\n\n\n<p>10.Which statements is\/are correct about JSON Syntax?<\/p>\n\n\n\n<ol><li>Data is separated by comma<\/li><li>All of the options<\/li><li>subset of the JavaScript object notation syntax<\/li><li>Data is in name\/value pairs<\/li><\/ol>\n\n\n\n<p>Answer: 2)All of the options<\/p>\n\n\n\n<p>11.True or False: JSON objects are typed while XML data is typeless.<\/p>\n\n\n\n<ol><li>False<\/li><li>True<\/li><\/ol>\n\n\n\n<p>Answer: 2)True<\/p>\n\n\n\n<p>12.What are true about JSON Arrays?<\/p>\n\n\n\n<ol><li>values should be comma-separated<\/li><li>can store single value<\/li><li>{ (square bracket) } is used to represent array<\/li><li>values should be semicolon-separated<\/li><\/ol>\n\n\n\n<p>Answer: 1)values should be comma-separated<\/p>\n\n\n\n<p>13.Which is true about JSON Syntax?<\/p>\n\n\n\n<ol><li>An Object (in square brackets)<\/li><li>A string (in single quotes)<\/li><li>A string (in multiple quotes)<\/li><li>A Boolean (true or false)<\/li><\/ol>\n\n\n\n<p>Answer: 4)A Boolean (true or false)<\/p>\n\n\n\n<p>14.Apart from the regular JSON, we have other versions of JSON in use such as ________.<\/p>\n\n\n\n<ol><li>JSONF<\/li><li>JSONR<\/li><li>JSONP<\/li><li>XSON<\/li><\/ol>\n\n\n\n<p>Answer: 3)JSONP<\/p>\n\n\n\n<p>15.Which would be better option to consider in a environment when you have both big JSON file &amp; multiple small JSON files to deal with?<\/p>\n\n\n\n<ol><li>JSON simple (regular)<\/li><li>GSON<\/li><li>Jackson<\/li><li>All the options<\/li><\/ol>\n\n\n\n<p>Answer: 1)JSON simple (regular)<\/p>\n\n\n\n<p>16.JSON can support sending, reading, and receiving texts available in any real-world business scenario.<\/p>\n\n\n\n<ol><li>True<\/li><li>False<\/li><\/ol>\n\n\n\n<p>Answer: 1)True<\/p>\n\n\n\n<p>17.What are the true options applicable for JSON Parser?<\/p>\n\n\n\n<ol><li>Used to compile and execute any JavaScript<\/li><li>Used to convert a JSON text to a JavaScript object.<\/li><li>None of the options<\/li><li>It will not recognize only JSON text but it will compile scripts.<\/li><\/ol>\n\n\n\n<p>Answer: 2)Used to convert a JSON text to a JavaScript object.<\/p>\n\n\n\n<p>18.JavaScript function JSON.stringify() is to convert JSON Object into a string.<\/p>\n\n\n\n<ol><li>False<\/li><li>True<\/li><\/ol>\n\n\n\n<p>Answer: 2)True<\/p>\n\n\n\n<p>19.GSON can convert any Objects into JSON and vice versa.<\/p>\n\n\n\n<ol><li>True<\/li><li>False<\/li><\/ol>\n\n\n\n<p>Answer: 2)False<\/p>\n\n\n\n<p>20.Which API for JSON processing can consume\/produce streaming JSON text?<\/p>\n\n\n\n<ol><li>GSON<\/li><li>XSON<\/li><li>JSONR<\/li><li>JSONP<\/li><\/ol>\n\n\n\n<p>Answer: 4)JSONP<\/p>\n","protected":false},"excerpt":{"rendered":"<p>JSON Fresco Play MCQs Answers Quiz 1 on JSON Basics 1.True or False: JSON objects are typed while XML data is typeless. False True Answer: 2)True 2.Who is the Father of JSON? Hakon Wium Lie Douglas Crockford Tim Berners-Lee Brendan Eich Answer: 2)Douglas Crockford 3.Why JSON over XML? Lighter but [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":663,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"content-type":""},"categories":[156],"tags":[],"_links":{"self":[{"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/posts\/710"}],"collection":[{"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/comments?post=710"}],"version-history":[{"count":1,"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/posts\/710\/revisions"}],"predecessor-version":[{"id":711,"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/posts\/710\/revisions\/711"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/media\/663"}],"wp:attachment":[{"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/media?parent=710"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/categories?post=710"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/emorah.com\/story\/wp-json\/wp\/v2\/tags?post=710"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}