How can you add a gradient fill to a shape?

What will be an ideal response?


To add a gradient fill to a shape, click the word Fill in the Tools panel to open
the Fill Options dialog box, select either the Linear Gradient or Radial Gradient
option, and click OK. Then click the Fill Color box to open the Gradient Editor,
and assign colors to the color stops.

Computer Science & Information Technology

You might also like to view...

If a class represents an amount of money (in US currency like $9.99), then the amount (like $9.99) could reasonably be stored in

a. A member variable of type double. b. Two member variables of type int. c. A string of characters (like "9.99"). d. None of the above.

Computer Science & Information Technology

Which of the following relative pathnames is interpreted as "the index.htm file is in the folder one level up in the folder tree from the current file"?

A. ./index.htm B. ../index.htm C. /index.htm D. __/index.htm

Computer Science & Information Technology

Here is a small program. Which of the statements about the variables is correct?

``` #include const double NUM = 2.9345358; double num = 3; double numTimes(int x); int main( ) { using namespace std; int value; cout << “Enter a value, I’ll multiply it by “ << NUM << endl; cin >> value; cout << “You entered “ << value << “ NUM times this is “ << numTimes(value) << endl; return 0; } double numTimes(int x) { double d; d = NUM * x; return d; } ``` a) NUM is a global variable. b) num is a global constant. c) value is local variable in the main function d) d is a local variable in the numTimes function.

Computer Science & Information Technology

What are the three methods of implementing client side virtualization?

What will be an ideal response?

Computer Science & Information Technology