Tutorial 2 Flashcards

1
Q

From the ____, you add links to other pages in the site, defining the site’s overall structure

A

home page

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

You assign each anchor its own anchor name, using the ____ attribute.

A

name

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

To create a link to an anchor, you use the ____ attribute.

A

href

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

You link to an id or anchor using the anchor name preceded by the ____ symbol.

A

#

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

The general syntax to create a hypertext link is ____.

A

<a>content</a>

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

When referencing a file located in a different folder than the link tag, you must include the ____ for the file.

A

path

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

Which of the following is an HTML-supported kind of path?

A

absolute and relative

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

A(n) ______ path provides a precise location for a file.

A

absolute

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

With HTML, absolute pathnames begin with a _______.

A

slash

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

Which of the following absolute pathnames is interpreted as “the parks.htm file is in the extra folder, which is a subfolder of the /tutorial02/case1 folder”?

A

/tutorial02/case1/extra/parks.htm

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

A file named “chem.htm” in the tutorial02 folder on drive C of your computer has what absolute pathname?

A

/C|/tutorial02/chem.htm

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

Most Web designers use ____ pathnames in their hypertext links.

A

relative

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

To reference a file in a folder directly above the current folder in the folder hierarchy, relative pathnames use two ____.

A

periods

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

Which of the following relative pathnames is interpreted as “the chem.htm file is in the tutorial subfolder one level up in the folder tree from the current file”?

A

../tutorial/chem.htm

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

Which of the following relative pathnames is interpreted as “the rock.htm file is in the same folder as the current file”?

A

rock.htm

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

A ____ specifies a precise location on the Web for a file.

A

URL

17
Q

Once you know an element’s id, you can create a link to it by adding the id to the ____ tag along with the href attribute in your text file.

A

<a></a>

18
Q

A(n) ____ is a set of rules that governs how information is exchanged.

A

protocol

19
Q

Web browsers communicate with Web servers using the ____ communication protocol.

A

HTTP

20
Q

In the URL http://www.mwu.edu/course/info.html#majors, the protocol is ____.

A

http

21
Q

In the URL http://www.mwu.edu/course/info.html#majors, the server is ____.

A

www.mwu.edu

22
Q

In the URL http://www.mwu.edu/course/info.html#majors, the id/anchor name is ____.

A

majors

23
Q

If the path and filename are left off the URL, the server returns the ____.

A

default home page

24
Q

____ servers can store files that Internet users can download, or transfer, to their computers.

A

FTP

25
Q

A(n) ____ map lists the position of all hotspots within a particular image.

A

image

26
Q

Two points define a rectangular hotspot: the ____ and the ____ corner.

A

upper-left, lower-right