Select the browser's action when you configure BOTH a background color and background image for the body selector

a. display the background color instead of the background image
b. will display no background for the page because it is "confused"
c. display the background color while the background image loads and before the background image is displayed
d. do none of the above

c

Computer Science & Information Technology

You might also like to view...

Write a program that reads a C++ source-code file and reports the occurrence of each keyword in the file. Here is a sample run:

``` Enter a C++ source file name: Welcome.cpp int occurs 3 times void occurs 1 time ... static occurs 1 time ``` Suppose a set of keywords is already given as follows: ``` set s; s.insert("asm"); s.insert("auto"); s.insert("bool"); ... s.insert("while"); ``` So you don’t need to populate the set in the program.

Computer Science & Information Technology

To save the position and orientation of an object, Alice provides special invisible objects called ____.

A. shots B. attributes C. markers D. clips

Computer Science & Information Technology