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
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
__________________ cabling generally contains eight wires (four pairs), used to transmit data.
Fill in the blank(s) with the appropriate word(s).
____ 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
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.