When an object is selected and you press Ctrl + D, what happens?
A) It is duplicated. B) It is rotated diagonally.
C) It is deleted. D) The Design tab is highlighted.
A
You might also like to view...
The ________ are the commands in the left panel of Backstage view
Fill in the blank(s) with correct word
When there is a finite number of choices for a form entry, a combo box control should be used.
Answer the following statement true (T) or false (F)
Define the role of a database administrator and of a data administrator, and explain the difference between the two.
What will be an ideal response?
Which of the following will check to see if a password contains a # sign, given that the character code for "#" is 37? The password is 8 characters long and is stored in a variable named pword.
a. ``` var check = false; for (j = 1; j < 7; j++) { if (pword.charCodeAt[j] == 37); check = true; } ``` b. ``` var check = false; for (j = 0; j < 8; j++) { if (pword.charCodeAt(j) == 37) check = true; } ``` c. ``` var check = false; for (j = 0; j <= 8; j++) { if (pword.charCodeAt()== 37) check = true; } ``` d. ``` var check = true; for (j = 1; j < 9; j++) { if (pword.charCodeAt(37)== "#") check = true; } ```