Click the ____ button to sort from Z to A or high to low.

A. ascending
B. descending
C. either a. or b.
D. neither a. nor b.


Answer: B

Computer Science & Information Technology

You might also like to view...

____ adds designs that repeat in rows across a slide.

A. Solid fill B. Pattern fill C. Gradient fill D. Texture fill

Computer Science & Information Technology

Write an application that performs two types of temperature conversions: degrees Fahrenheit to degrees Celsius and degrees Celsius to degrees Fahrenheit. Your output should look like Fig. 12.28.


a) Copying the template to your working directory. Copy the C:Examples Tutorial12ExercisesTemperatureConverter directory to your C:SimplyJava directory.
b) Opening the template file. Open the TemperatureConverter.java file in your text editor.
c) Adding a method to your application to convert from Celsius to Fahrenheit. On line
147, add a comment indicating that the method will convert the temperature from Celsius to Fahrenheit. On line 148, add the method header for this method. The method will be called convertToFahrenheit. This method returns a value of type double and takes an argument of type double. Name the double parameter degree. On line 149, add a left brace to begin the body of the method. On line 150, add a return statement that performs the conversion calculation. To do this, follow the return keyword with the following expression:

( 9.0 / 5.0 ) * degree + 32.0;

On line 152, add the right brace to end the body of the method. Follow

Computer Science & Information Technology

When selecting noncontiguous files, you press and hold the ________ key while clicking the desired files

A) Alt B) Esc C) Ctrl D) Shift

Computer Science & Information Technology

Fixed page designs can be more difficult to implement than liquid page designs.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology