What is HTML
A programming language used to define and interpret the content of web pages
What is CSS (Cascading style sheets)
What is JavaScript
A programming language that programs the behaviour of web pages
What are the Two Sections of HTML
Describe the main HTML Tags
How do you Show the End of a HTML Tag
< /html >
Describe Ordered and Unordered Lists in HTML
Describe the Extra HTML Tags
Write the HTML code for a hyperlink
< a href = “booking.htm” > < img src = “ticket.pgn” > < / a>
What are the names of the two methods of applying CSS
How do you use External CSS in your HTML code
Write within the tag
Describe an Example of CSS Syntax
head{
background-color: #8EJH32
}
body {
background-color: white;
font-family: Arial,
font-size: 20px;
Text-align: center;
}
Is JavaScript interpreted or complied
What are the Advantages of using JavaScript
What is a Search Engine
A program that searches through a database of internet addresses looking for resources based on criteria set by the client
How does a Search Engine work
Why is it important the order in which Search Engines display webpages
What is the PageRank Algorithm
The algorithm that determines the order in which web pages are displayed when a search is conducted
The algorithm of pagerank itself is given by:
PageRank(x) = (1-d) + d[(PageRank(T1) ÷ Count(T1)) + … + (PageRank(Tn) ÷ Count(Tn)]
PageRank(x) is the page rank of page x, Count(Tn) is the total count of outbound links from a webpage n and d is the damping factor.
Why and how was the PageRank Algoirthm improved
Describe the steps of the PageRank Algorithm
What factors determine a PageRank
Aside from links between websites what other factors affect the PageRank of a website
What data structure is used to display a PageRank Algorithm
A Directed Graph
What is Server Side Processing