Identify the letter of the choice that best matches the phrase or definition.

A. A global network made up of millions of smaller computer networks that are all connected together
B. Identifies a Web site and is chosen by the site owner
C. A series of computers that are connected together to share information and resources
D. The information presented on a Web page
E. A node that provides the ability to cross-reference information within a document or a Web page and enables the user to move from one document or Web page to another
F. The computer an individual uses to access information, via the Internet
G. A set of technical specifications that defines a format for sharing information
H. A series of characters that the server administrator assigns to the Web server
I. The software installed on your Web client that allows users to view Web pages
J. The name you give a Web page
K. Usually a graphic used by a company for the purposes of brand identification
L. A scripting language that works with HTML


A. Internet
B. domain name
C. network
D. content
E. hyperlink
F. Web client
G. protocol
H. machine name
I. Web browser
J. page title
K. logo
L. JavaScript

Computer Science & Information Technology

You might also like to view...

Referring to the accompanying figure, which port is pointed to by callout B?

A. VGA B. DVI C. HDMI D. USB

Computer Science & Information Technology

Test your understanding of Java with the following

What does System.out.println(); do? What does the statement System.out.println(3 + 2); do? What does the statement System.out.println("The answer is: " + 3 + 2); do? What does the statement System.out.println("Hi " + " there"); do?

Computer Science & Information Technology

Extending the first line of text to the left of the text block creates a ____ indent.

A. tracking B. kerning C. leading D. hanging

Computer Science & Information Technology

Analyze the following code.

``` int[] list = new int[5]; list = new int[6]; ``` a. The code has compile errors because the variable list cannot be changed once it is assigned. b. The code has runtime errors because the variable list cannot be changed once it is assigned. c. The code can compile and run fine. The second line assigns a new array to list. d. The code has compile errors because you cannot assign a different size array to list.

Computer Science & Information Technology