1.3.4 Web Technologies Flashcards

1
Q

What is HTML?

A

The language that web pages are written in

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the function of <html>?

A

All code written within is interpreted as HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the function of <body>?

A

Defines content in the main browser content area

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the function of <link></link>?

A

Used to link to a CSS stylesheet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the function of <head>?

A

Defines the browser tab

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the function of <title>?</title>

A

Defines the title of the document

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the function of <h1>, <h2> ..?

A

Heading styles in decreasing sizes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the function of <p>?

A

A paragraph separated with a line space above and below

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the function of <img></img>?

A

Self closing image with parameters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How is the <img></img> tag used?

A

<img></img>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the function of <a>?</a>

A

Anchor tag defining hyperlinkg with location parameters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How is the <a> tag used?</a>

A

<a> link text </a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the function of <ol>?

A

Defines an ordered list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the function of <ul>?

A

Defines an unordered list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the function of <li>?

A

Defines an individual list item

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the function of <div>?

A

Creates division of a page into separate areas which can be identified by a unique name

17
Q

How is the <div> tag used?

A

<div>
</div>

18
Q

How are classes defined using HTML?

A

With full stop as prefix to class name

19
Q

How are identifiers defined using HTML?

A

With an initial hashtag

20
Q

What is CSS?

A

A language used to describe the style of the webpage

21
Q

What is internal/embedded CSS?

A

Placed inside style tags entered directly within the HTML document

22
Q

What is external CSS?

A

Placed inside external style sheet linked to HTML document

23
Q

What is JavaScript?

A

A language that adds interactivity to websites

24
Q

What is a search engine?

A

A program that searches through a database of Internet addresses looking for resources based on a criteria set by client

25
What are web crawlers?
Programs that collect information by traversing Internet webpage by webpage looking for linked sites
26
What information do web crawlers collect?
Keywords & phrases from web page Meta data
27
What is the purpose of the PageRank algorithm?
Ranks each webpage Higher ranked pages will show first on search engine
28
State the 2 factors which determine the page rank of a page.
The number of incoming links from other web pages Page rank of linked web pages
29
What is the algorithm for PageRank?
PageRank(x) = (1-d) + d[(PageRank(T1) / Count(T1)) + ... + (PageRank(Tn) / Count(Tn))]
30
What is the dampening factor in the PageRank algorithm?
Probability surfer will click through to the page
31
What is the purpose of a dampening factor in the PageRank algorithm?
Stops page rank of linked pages from having too much effect
32
What is server side processing?
When a client sends data to a server for it to be processed No information is processed on the client computer
33
Give three advantages of server side processing.
Can perform large calculations faster Not browser dependent More secure
34
What is client side processing?
When a client process the data on its local device All information processed on client computer
35
Give 2 advantages to client side processing.
Webpage gives immediate response to user actions Gives developers more control over website