To insert a background color on a webpage, click the ________ tab

A) HOME
B) PAGE LAYOUT
C) DESIGN
D) INSERT


C

Computer Science & Information Technology

You might also like to view...

Which pair of words does not complete the sentence below correctly? A ________ is a(n) ________.

a. Container, Component. b. Container, JPanel. c. JComponent, Container. d. Component, Object.

Computer Science & Information Technology

Given the following code. The input file, in.dat, is a copy of the program code in this problem. How will the output file, out.dat, differ from the input file?

``` // file: testQuestion.cc // test question: copy files: in.dat to out.dat // in.dat is a copy of a file containing this code. // use EOF to terminate copy loop #include #include // for exit() using namespace std; int main() { ifstream in; ofstream out; in.open("in.dat"); out.open("out.dat"); while(in >> ch) out << ch; return 0; } ```

Computer Science & Information Technology

Whenever you want to modify Hue/Saturation in non-specific areas of an image, think of using the ____ feature.

A. Modify Color B. Choose Color C. Replace Color D. Change Color Area

Computer Science & Information Technology

The selection sort will not allow an automatic loop exit if the array becomes ordered during an early pass.

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

Computer Science & Information Technology