1.3.4 - web technologies Flashcards

1
Q

HTML

A

Describes the content and structure of a web page.

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

CSS

A

Dictate the style and formatting of a web page.

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

<head>
</head>

A

Defines the browser tab or window heading area.

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

<title>
</title>

A

Defines the text that appears in the window heading area.

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

Write the html for an image, specifying the height and width.

A

<img></img>

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

html to add a link to ‘the website.com’.

A

<a> the website </a>

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

html tag for a numbered list

A

<ol>
</ol>

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

html tag for an an unordered/ bulletpointed list

A

<ul>
</ul>

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

html tag to add an item to any list

A

<li>
</li>

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

CSS to make h1 background colour blue

A

h1 { background-color: blue;}

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

where does the CSS go in a html document

A

<head>
<style>

    CSS CODE
  
</style>
</head>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

CSS to make the font of an ‘intro’ class red

A

.intro { color: red;}

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

CSS to make text centered for a class ‘center’ but only for paragraphs

A

p.center{ text-align: center; }

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

html to make a paragraph belong to a ‘center’ and ‘large’ class

A

<p>
</p>

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

CSS to make background colour of an element with identifier ‘firstname’ yellow

A

firstname {background-color: yellow; }

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

2 advantages of processing input data before it is posted to a server

A

1- The local computer can validate erroneous data before submission to a database
2- A busy server is relieved from having to process everything itself.

17
Q

JavaScript to assign a variable to an element with the html identifier ‘example’

A

name = document.getElementByID (“example”)

18
Q

JavaScript to change the contents of a variable called ‘name’ to “hello world”

A

name.innerHTML = “Hello World”;

19
Q

JavaScript to write “hello world” to the document

A

document.weite (“hello world”);

20
Q

JavaScript to write hello world in an alert box

A

alert (“Hello World”);

21
Q

Web crawler/ spider

A

Constantly goes out to all the web pages currently on the index, and then goes to fetch all the sites linked to by those sites and so on until they have linked to all of nearly all web pages and resources on the internet.

22
Q

What are some features (other than Meta tags and descriptions) that affect search results?

A

1- using keywords in the title tag.
2- age of website
3- date of last update or frequency of updates
4- the number and relevancy of keywords appearing in h1 tags
5- the relevancy of the domain name to the content

23
Q

Client-side processing

A

Data is processed on the client computer rather than on the server.

24
Q

2 advantages of client side processing

A

1- to lighten load on