week 1 Flashcards

1
Q

what are the an extensive data communications network installed around the globe?

A
  • wire
  • optic fibre
  • wireless
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what does WWW stand for ?

A

world wide web

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

what is WWW?

A

) is a collection of documents (web pages) available to the public and residing on servers distributed around the world

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

Give 3 examples of web browsers

A

google chrome
firefox
internet explorer

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

what are the browsers called

A

client side application software

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

what is uniform resourc used for?(URL)

A

The URL is used to represent the address of the web server

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

Every device on a data network requires a unique address to identify it.Usually how binary numbers are the adress consist of

A

32 bit or 128 bit binary number

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

what is 32 bit or 128 bit binary number called

A

IP address

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

what is the URL converted to

A

valid IP address using the Domain Name System (DNS) protocol

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

where does the URL points to

A

home page of a particular website

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

How Client Communicates with a Web Server

A

Protocol , address and path name

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

why is domain used for

A

A domain name is merely used to make web site addresses easier to remember

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

what does http define

A

HTTP defines the rules by which the browser communicates with the web server

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

what does the browser send to make the web page work

A

The browser sends a GET request to the Web server to retrieve the address it has been given.
For example, when a user types http://www.abc.com/pic1.jpg, the browser sends a GET pic1.jpg command to abc.com and waits for a response.

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

what happens after browser receives GET responds

A

It verifies that the given address exists, finds the necessary files, runs the appropriate scripts, exchanges cookies if necessary, and returns the results back to the browser.
If it cannot locate the file, the server sends an error message to the client.

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

what does html stand for

A

hypertext markup language

17
Q

what does coding contain

A

Colour, font, size, and positioning of text
The size and positioning of images
Code to identify when the mouse transits a section of the screen
Code to initiate action when the mouse transits a section of the screen
Code to respond to an action such as a mouse click
Etc.

18
Q

need to know

A

The code for interpreting the web page and the data itself are intermixed
Special characters are used to distinguish between formatting code and data

19
Q

where is HTML document is created

A

text editor
Microsoft Notepad or equivalent can be used as a text editor
Free third party HTML editors such Notepad++ can also be used
An HTML editor performs syntax checking to identify errors as well as other useful functions

20
Q

why is word processor not suitable to create HTML

A

a word processor such as Microsoft Word is generally not suitable because it embeds hidden formatting characters

21
Q

how to save the page after it is encoded

A

Once a web page is coded it is saved with a .html extension

22
Q

how to save a website with multiple pages

A

If the website consists of more than one page, the first (home) page should be saved as index.html

23
Q

what does declaration mean

A

It identifies the type of mark up language in use.The declaration informs the browser how to interpret the mark up code

24
Q

what is the type of declaration we will using in this course

A

HTML5. This declaration will always be the first line in each document.

25
Q

what is open and close tags

A

is the opening tag.

is the closing tag.