JSON can support sending, reading, and receiving texts available in any real-world business scenario.
Answers
Answer :-
There are 2 popular data interchange formats available:-
1) JSON
2) XML
JSON is a language independent data interchange format.
The design goals of JSON were :-
1) TO BE minimal
2) TO BE portable
3) TO BE textual
4) A subset of JavaScript
JSON parallels the object models found in popular programming languages Eg:- JavaScript, C#, and Java. This makes JSON more popular.
Biggest shortcoming of JSON compare to XML is - XML is a document markup language. JSON is not. Also XML has a schema and namespaces. JSON does not have it. For document markup language, XML is preferred over JSON.
Yes. JSON can support sending, reading and receiving texts available in any real world business scenario.
Short notes about JSON:
(i) Acronym for "JavaScript object Notation".
(ii) JSON is not used for handling large complex data.
(iii) JSON is used to read data from the web server and display the data in the web pages.
(iv) JSON is used to transfer data between different systems.
(v) JSON is independent of programming language. It have support for Unicode.
(vi) JSON have different object types such as string, boolean etc.
(vii) Data which is present inside the JSON is arranged in key value pair.
Hope it helps!