Hello again, fellow tech enthusiast! I'm back to introduce you to some more terminology!
XML, which stands for Extensible Markup Language, structures your data similarly to a recipe. It uses tags (think tables) to define various pieces of information and their relationships. This makes XML readable by both humans and computers.
key words that can be found on XML
- Tags - These instructions are in an angle brackets which is ( < and > ) that defines the part of data.
- Elements - The data you want to store.
- Attributes - This are additional details you can add, like size or color.
What Is JSON?
JSON, also known as JavaScript Object Notation, is a lightweight and human-readable format for storing and exchanging data. It is a popular choice among web developers who enjoy building websites due to its simplicity and flexibility.
JSON key terms
- Data Format - Let's see JSON as a language for structuring information. As it defines how data is organized, not how it's displayed.
- Key value pairs - The core building block of JSON. Keys act like labels, identifying specific pieces of data. Values represent the actual information associated with that key. Imagine a information log in : "name" : "Diolola" , "age" : "22" .
- Objects - Is a collection of key value pairs that are enclosed in curly braces ( {} ).
- Arrays - Ordered list of values that are enclosed is squared brackets ( [] ).
- Values - The data that are stored in JSON.
What is AJAX?
AJAX, which stands for Asynchronous JavaScript and XML, is a set of techniques used for developing web applications.
- Asynchronous: This refers to background communication that occurs separately from what users can see
- JavaScript: It's the programming language responsible for facilitating communication with the server.
- XML Http Request Object: A JavaScript built-in object managing the actual communication with the server, sending requests and receiving responses.
- Server: The backend of computers storing and processing data. In AJAX, the server sends or receives data based on the webpage's request.
- Data Formats (XML / JSON): While XML is the preferred choice nowadays, both are currently utilized as they offer structured methods for exchanging information between the webpage and the server.
Thank you for accompanying me on this exploration of the terminologies and definitions of these three languages! Whether you're a web developer or simply intrigued by what happens behind the scenes, grasping the key concepts of these three languages is a precious resources.
see yah!
DIOLOLA, LEANDRO J.
Comments
Post a Comment