What information does a web crawler capture when it visits a site?
Records key information:
Follows links to other sites
How does a web crawler find a website?
What can a developer do stop a web crawler from indexing a site?
A site is found either by selecting it from an existing list or following a link from another site.
The robots.txt file can be used to instruct web crawlers to skip the page.
Where does the information go that was gathered by the web crawler?
What is PageRank and what are the main factors taken into account to calculate the PageRank of a website?
PageRank is a calculation, which evaluates the quality and quantity of links to a webpage to determine a relative score of that page’s importance and authority on a 0 to 10 scale. Stored as a weighted, directed graph.
What is the PageRank damping factor?
A value between 0 and 1.
The probability that a user will not follow a link
How can a website improve its PageRank Score?
What is the purpose of
HTML | CSS | JavaScript
What three methods can be used to insert CSS into a webpage?
List the 9 CSS formatting commands that you are expected to know.
How is a class identified in HTML and CSS?
How is an ID identified in HTML and CSS?
What is the purpose of the div tag?
To group a section of HTML code together so they can be referred to as one identifier.
What would be the HTML code to create a bullet point list with the values “Hello” and “World” in the list?
What would be the HTML code to create a numbered list with the values “Hello” and “World” in the list?
What HTML tags are used to embed JavaScript in an HTML page?
What HTML tags are used to embed CSS in an HTML page?
How would I add a link to the BBC home page using HTML code?
How would I add a 100x100 image called “smile.png” to an HTML page and set appropriate alternative text?
What is the HTML code to add a form to a page with a text box and a submit button?
What are the three largest headings in HTML?
What is the purpose of the title tag, and where does it appear?
This would appear in the tab name at the top of the web browser.
How do you get JavaScript to show an alert box?
alert(“Message to alert”)
How do you capture the input from a form textbox using JavaScript?
passcode = document.GetElementById(“nameOfID”).value
How do you update an element in an HTML element using JavaScript?
document.GetElementById(“nameOfID”).innerHTML = “Hello World”