The ____ file is the main Web page that's served by Apache.

A. home.html
B. start.html
C. index.html
D. main.html


Answer: C

Computer Science & Information Technology

You might also like to view...

What is wrong with the following recursive function? It should print out the array backwards.

void print(int array[], int start, int size) { if(start < size) return; else { print(array, start+1,size); cout << array[start] << endl; } } a. infinite recursion b. the stopping condition is wrong c. the recursive call is wrong d. nothing

Computer Science & Information Technology

__________________ cabling generally contains eight wires (four pairs), used to transmit data.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

____ is the process of shrinking or stretching text, changing the width of individual characters.

a. Kerning b. Scaling c. Tracking d. Both b and c

Computer Science & Information Technology

Case-Based Critical Thinking Question ? Scott is the website administrator for a large pet food manufacturer. It plans to sell its products online and wants to test its retail website. Scott recommends that the website be tested using _____ .

A. Google Chrome B. Mozilla Firefox C. Microsoft Internet Explorer D. All of the above.

Computer Science & Information Technology