InterviewSolution
Saved Bookmarks
| 1. |
What is XML & JSON? |
|
Answer» XML stands for eXtensible Markup Language. It is a markup language like HTML and is DESIGNED to store and transport data. XML doesn’t do anything, but it can store data in a SPECIFIC format. JSON stands for JavaScript Object Notation and is also used to store and transport data. JSON is often used when data is sent from a SERVER to a web PAGE. JSON is "self-describing" and easy to understand. JSON is a lightweight format for storing and transporting data. |
|