Which of the following is not true when changing fonts, font sizes, font styles, and font colors?
a. When you click the Font Color button instead of the Font Color button arrow, the color displayed in the lower part of the Font Color button is applied to selected text while displaying the color gallery.
b. Font styles include bold, italic, and underline.
c. You can apply any combination of these styles to presentation text to draw the reader's eye to important text.
d. The lower part of the Font Color button displays the most recently applied font color.
Ans: a. When you click the Font Color button instead of the Font Color button arrow, the color displayed in the lower part of the Font Color button is applied to selected text while displaying the color gallery.
You might also like to view...
A host computer's default gateway is the IP address of the router that connects to the Internet
Indicate whether the statement is true or false
Which of the following will create the String r1 = "a TOYOTa"?
``` String r = "a toyota"; ``` a. String r1 = r.replace("toyot", TOYOT"); b. String r1 = r.replace('t','T'); r1 = r.replace('o','0'); r1 = r.replace('y','Y'); c. String r1 = r.replace('t','T').replace('o', '0').replace('y', 'Y'); d. String r1 = r.substring(2, 4).toUpperCase();