Which button on the Drawing Tools Format tab would you click to change the color, weight, or style of the border of a shape?

What will be an ideal response?


Shape Outline

Computer Science & Information Technology

You might also like to view...

Analyze the following two programs:

``` A: public class Test { public static void main(String[] args) { xMethod(5); } public static void xMethod(int length) { if (length > 1) { System.out.print((length - 1) + " "); xMethod(length - 1); } } } B: public class Test { public static void main(String[] args) { xMethod(5); } public static void xMethod(int length) { while (length > 1) { System.out.print((length - 1) + " "); xMethod(length - 1); } } }``` a. The two programs produce the same output 5 4 3 2 1. b. The two programs produce the same output 1 2 3 4 5. c. The two programs produce the same output 4 3 2 1. d. The two programs produce the same output 1 2 3 4. e. Program A produces the output 4 3 2 1 and Program B prints 4 3 2 1 1 1 .... 1 infinitely.

Computer Science & Information Technology

What program is used by CentOS 7 to manage partitions on the computer system?

A. Ext3 B. GRUB C. MBR D. GUI

Computer Science & Information Technology

You can import XML data without a schema.

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

Computer Science & Information Technology

Colors in the cool color group such as green and blue tend to have a calming effect. ____________________

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

Computer Science & Information Technology