IS Week 3/4

In class during late January we began working in XML. XML stands for extensible markup language, and is a text based markup language. XML files consist of tags and attributes. Tags are self descriptive and are used to identify and classify data. This makes XML extensible, one of its key traits. XML is also only capable of storing information, not presenting. XML is also subject to a public standard, as it was published by a public organization. XML is also a type of language known as a markup language. A markup language is one that encodes documents in a format that is both human-readable and machine-readable. This distinguishes it from programming languages in that it cannot run computations or algorithms. XML documents generally begin with a document declaration. These generally contain a version, encoder, and a boolean returning whether the document stands alone. Document declarations are case sensitive. The declaration is then followed by elements. Elements are enclosed within <>, </> brackets. XML documents have a few key elements. First, they have the document declaration. It identifies the document as an XML file and also declares the standalone attributes. These are followed by the XML elements, AKA tags. These are the highest order elements of your file.  

https://www.w3.org/XML/


Comments

Popular posts from this blog

IS Week 12

IS Week 11

IS Week 2