To duplicate a shape, you can right-click the shape and then click ________.
Fill in the blank(s) with the appropriate word(s).
Duplicate
Computer Science & Information Technology
You might also like to view...
Given the following code fragment and the input value of 2.0, what output is generated?
float tax; float total; cout << "enter the cost of the item\n"; cin >> total; if ( total >= 3.0) { tax = 0.10; cout << total + (total * tax) << endl; } else { cout << total << endl; } a. 2.2 b. 2.0 c. 3.1 d. 4.4
Computer Science & Information Technology
Referring to the picture above, what is missing from the application window?
A. Status bar B. Title bar C. Scroll bars D. Sizing buttons
Computer Science & Information Technology