The _________, below the menu bar, contains buttons that let you create and select elements such as rectangles, rounded rectangles, ellipses, and text elements.

Fill in the blank(s) with the appropriate word(s).


toolbar

Computer Science & Information Technology

You might also like to view...

Write a method called powersOfTwo that prints the first 10 powers of 2 (starting with 2). The method takes no parameters and doesn't return anything.

``` public void powersOfTwo() { int base = 2; for (int power = 1; power <= 10; power++) System.out.println(Math.pow(base,power)); } ```

Computer Science & Information Technology

Match the following e-mail components with their purpose:

I. Reply II. Reply all III. Forward IV. To: V. Cc: A. generates new e-mail message including original attachments B. e-mail address of primary recipients C. e-mail address of secondary recipients D. generates new e-mail message to the author E. generates new e-mail message to the author plus copied recipients

Computer Science & Information Technology

What are the steps to crop an image?

What will be an ideal response?

Computer Science & Information Technology

RAM is a ________ storage location.

A. permanent B. peripheral C. volatile D. nonvolatile

Computer Science & Information Technology