What is the MIME type of JSON?
application/x-json
text/json
application/json
application/javascript
Correct Answer : C
Does JSON support Unicode characters?
What is the value of obj in the following code?
var obj = JSON.parse('{"fruit": "Apple"}', function(k, v) { if (v == "Apple") return "Orange" else return v; });
What is a JSONStringer used for?