Click the ________ button in the Styles group on the SmartArt Tools Design tab to display the Color gallery
A) Change Colors B) Color Effects C) Colors D) Add Colors
A
You might also like to view...
As you are typing a Word document consisting of several paragraphs, you should hit ENTER at the end of each sentence
Indicate whether the statement is true or false
What is the effect of the following code fragment?
``` int num1 = 2; int num2; cin >> num2; if ( num2 % num1 == 0 ) cout << "first option" << endl; else cout << "second option" << endl; ``` a. assigns the character "%" to the variable num2 if num1 is 0, and displays first option b. displays first option if num1 and num2 are equal to 0, and second option otherwise c. displays first option if an even number is entered as input, and second option if an odd number is entered as input d. displays first option if num1 and num2 are equal and second option otherwise