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

A. HTTP
B. HTML
C. URL
D. FTP


Answer: A

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. If the expression on the left side of the following is true, the expression on the right side will not be checked. (a > = b) || (c == d) 2. If the expression on the left side of the following is false, the expression on the right side will not be checked. (a > = b) && (c == d) 3. The default section is required in a switch statement. 4. An expression that has any value other than 0 is considered true by an if statement. 5. Both of the following if statements perform the same operation. 1. if (sales > 10000) commissionRate = 0.15; 2. if (sales > 10000) commissionRate = 0.15;

Computer Science & Information Technology

The code fragment:

Increment::Increment( int c, int i ) : increment ( i ) { count = c; } does not cause any compilation errors. This tells you that: a. count must be a non-const variable. b. count must be a const variable. c. increment must be a non-const variable. d. increment must be a const variable.

Computer Science & Information Technology

Case B-1You are in the planning stages of designing a website to market children's books. The continually expanding field of children's books makes this an exciting adventure. You realize that planning is an essential part of creating an effective website, and that your planning decisions will affect the success of the project. Before creating the website, you create a system of folders for the site. You first create a folder with the name of the company. Inside the company folder, you create a subfolder to store all of the files that are not Web pages. Which file name(s) would be acceptable for the subfolder?

A. assets B. images C. additions D. all of the above

Computer Science & Information Technology

In some programming languages, such as C#, Visual Basic, and Java, every class you create is a child of one ultimate base class, often called the ____ class.

A. Initial B. Object C. Core D. Basic

Computer Science & Information Technology