Bevel is a type of ________ effect

A) table B) WordArt C) picture D) Building Block


C

Computer Science & Information Technology

You might also like to view...

When a VPN connection loses connectivity due to a network interruption, which protocol can reconnect automatically once network connectivity is restored using a feature known as VPN Reconnect?

A. PPTP B. L2TP C. SSTP D. IKEv2

Computer Science & Information Technology

Each time an Access database is opened, the Message Bar displays a security message advising

that certain content has been disabled. Indicate whether the statement is true or false

Computer Science & Information Technology

The Start menu includes variously-sized shaded rectangles, called ____ .

A. icons B. tiles C. apps D. gestures

Computer Science & Information Technology

(Modified Class Average Application) The Class Average application has a deficiency. The Average JButton is never disabled after the average is calculated the first time. Modify the Class Average application, so that the Get Grades JButton is disabled after the user enters 10 grades. The user’s only option then will be to click the Average JButton to display the average. Once the average is displayed, have the application disable the Average JButton, enable the Get Grades JButton and give the Get Grades JButton the application’s focus, so that the user may enter 10 new grades. See figure 9.23 below:


```
a) Copying the template to your working directory. Copy the directory C:Examples Tutorial09ExercisesModifiedClassAverage to your C:SimplyJava directory.
b) Opening the template file. Open the ClassAverage.java file in your text editor.
c) Modifying the getGradesJButtonActionPerformed event handler. Add code in lines 139–140 to disable the Get Grades JButton. Use line 139 for a comment, and line 140 to perform the disabling.
d) Modifying the averageJButtonActionPerformed event handler. Add code starting in line 150 that will disable the Average JButton, enable the Get Grades JButton and give the application’s focus to the Get Grades JButton.
e) Saving the application. Save your modified source code file.
f) Opening the Command Prompt window and changing directories. Open the Com- mand Prompt window by selecting Start > Programs > Accessories > Command Prompt. Change to your working directory by typing cd C:SimplyJavaModified- ClassAverage.
g) Compiling the

Computer Science & Information Technology