You can use buttons in the Font group on the _____ tab to select different font attributes for any data in worksheet cells.

A. HOME
B. VIEW
C. FORMAT
D. INSERT


Answer: A

Computer Science & Information Technology

You might also like to view...

Fill in the correct start tags and end tags to create a basic HTML document.

< ______ > < ______ > < ______ >This is the page title.< ______ > < ______ > < ______ > This is the content of the Web page. < ______ > < ______ >

Computer Science & Information Technology

Implementation of an enterprise resource planning (ERP) system ensures good work processes that are based on _____.

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

Computer Science & Information Technology

What is output by the following Java code segment? int temp = 200;

``` if (temp > 90) { System.out.println("This porridge is too hot."); } if (temp < 70) { System.out.println("This porridge is too cold."); } if (temp == 80) { System.out.println("This porridge is just right!"); } ``` a. This porridge is too hot. b. This porridge is too cold. c. This porridge is just right! d. None of the above.

Computer Science & Information Technology

(RationalNumber Class) Create a class RationalNumber (fractions) with the following capa- bilities:

a) Create a constructor that prevents a 0 denominator in a fraction, reduces or simplifies fractions that are not in reduced form and avoids negative denominators. b) Overload the addition, subtraction, multiplication and division operators for this class. c) Overload the relational and equality operators for this class.

Computer Science & Information Technology