Component 2.3 - Programming Languages Flashcards
What does HTML stand for?
Hyper Text Markup Language
Why are web standards such as HTML important for programmers?
Web standards simplify the development of web pages as web programmers will be able to understand another developer’s code.
Why are web standards such as HTML important for the end user?
Following standards ensures that different web browsers are able to display web pages in the way they were intended
Shat is HTML?
HTML is a standard used for creating web pages
What are the first and second tag in a pair of HTML tags called?
1st - opening tag
2nd - closing tag
What does the text between < html > and < / html > do?
This text describes the web page
What is < head > in HTML?
The element is a container for all head elements, including metadata, title for the document, scripts, styles
What would metadata be used in html for?
Metadata is used in html to describe the page, include key words, author of documents, time last altered etc
What does the text between < body > and < /body >tags do?
This text includes the contents of the web page
What does <p> do?</p>
The <p> tag defines a paragraph. Web browsers will add some space before the end for every </p><p> element automatically</p>
What tags are used to hyperlink an element within a web page?
<a> and </a>
What is the tag(s) for displaying an image in html?
<img></img>
What are the tags for headings, bold, italic, centre align, underline in html?
Headings - <h1> to <h6> Bold - <b> Italic - <i> Centre align - </i></b> Underline - <u>
All end with </u></h6></h1>
What is the <ul> and </ul> tags used for in html?
The <ul> tag is used for an unordered list</ul>
How can a bullet point list of elements apples, oranges, pears be made in html?
By using the <ul> tag for an unordered list then the <li> tag for each line in the list.
<ul><li>Apples</li><li>Oranges</li>
...
</ul>
</li></ul>
What is <blockquote> tag used for in html?</blockquote>
The <blockquote> tag is used to specify a section that is quoted from another source. Web browsers will indent <blockquote> elemenets</blockquote></blockquote>
What is the <hr> tag used for in HTML and what does it stand for?
The <hr> (horizontal rule) tag is a single tag (no closing tag) used to separate content in a HTML page (bigger gap)
What is the difference between assembly code and machine code?
Assembley code has the same structure and functions as machine code but it uses mnemonics (names) rather than binary code (1s 0s)
Order Python, hardware, machine code, assembly code, high level languages?
Python, high level languages, assembly language, machine code, hardware