1.3.4 Web Technologies Flashcards

1
Q

What does HTML do?

A

It allows a browser to render a webpage for the viewer, by describing the structure and order of the web page.

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

How is a class defined within CSS?

A

Using a dot.

.example {
background-color: green;
}

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

How is a defined class used within HTML?

A

<div>
<p> contents go here </p>
</div>

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

What is website meta data?

A

Information specified by website owner.

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

What does CSS do?

A

Describes the style of a web page.

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

What is javascript?

A

A scripting language which adds interactivity to websites.

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

What is javascript commonly used to do?

A

Validate input data on the client computer

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

Javascript Advantages

A
  • Local computer can deal with invalid data, before it is sent to servers
  • Eases the load on busy servers
  • Reduces web traffic.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a search engine?

A

A program that searches through a database of internet addresses, looking for resources based on criteria set by the client.

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

What do search engines rely on?

A

An index of websites.

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

How do search engines build an index of websites?

A

They use web crawlers (spiders).

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

How do web crawlers work?

A

They traverse the internet page by page, using links on websites.
They collect keywords, phrases and metadata to add to the index.

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

How is an identifier defined within CSS?

A

example {

Using a hashtag.

      background-color: green; }
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the PageRank algorithm do?

A

It determines the order in which web pages are displayed when a search is conducted.

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

What two factors determine the page rank of a page?

A
  • number of inbound links
  • Page rank of inbound links
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are common server side scripting languages?

A

SQL, PHP

17
Q

Why is server side processing useful?

A
  • Can perform large calculations faster than clients
  • Secure
18
Q

What is a common client side scripting language?

A

JavaScript

19
Q

What is server side processing?

A

When a client sends data to a server for it to be processed, meaning no data is processed on the client computer.

20
Q

What is client side processing?

A

When a client processes the data on a local device, meaning all information is processed on the cliuent computer.

21
Q

Why is client side processing useful?

A
  • Webpage can immediately respond to user actions
  • Executes quickly