Part 5 - Weaving the Web Flashcards

1
Q

What is a client-server system?

A

It is an online way of sharing information between computers. One computer (sending the information) is known as the server and the computer receiving it is known as the client.

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

Split the following URL into a scheme, a host and the path.

http://www.w3.org/TR/html4/about.html

A

http: (scheme)
//www.w3.org/ (host)
TR/html4/about.html (path)

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

What is HTTP and HTTPS?

A

Hypertext transfer protocol (HTTP) and HTTPS is a secure version which allows you to send confidential information e.g. credit card details. It tells the client browser what form it should request the information from the server.

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

What is HTML?

A

Hypertext markup language is the programming language of the web.

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

What is delimiting?

A

Electronic mark up uses a tag at the start and end of the area to be styled which lets the computer known what text to style. This is called delimiting.

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

What does WYSIWYG mean?

A

What you see is what you get - is a form of presentation where the document looks the same on screen or printed or both. An example of an application is Word document - when you use the italics function it changes the text you see. When you use the italics function in word, you don’t see any marks indicating it is in italics but instead the words appear in italics.

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

What is nesting? Give an example HTML code for writing “This sentence is in bold and italics” in bold italic font.

A

Nesting is where you have a tag inside another tag. It is good practice to write them in reverse order when closing the tags.

<b><i>This sentence is in bold and italics</i></b>

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

What is Hexadecimal used for?

A

It stores large amounts of information in a relatively short form using the letters 0 - 9 and letters A - F to represent 16 digits. A colour code example in HTML might be #66ffa7

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

What is CSS

A

Continuous Style Sheeting - used to style headings and background of a web page to ensure consistency. Style sheetings can be written or they can be downloaded and referenced.

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

What is XML? What is the naming convention used?

A

XML is extensible mark-up language which is a way of structuring HTML documents.

Camel Case is used for naming e.g. theHousesAddress

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

What code tags can you use to insert a video or audio file into a site using HTML5?

A

and

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