Write the lines of code that will define a compound border using three borders. Use a line border on the inner edge, an etched border on the outer edge, and a raised bevel border in between.
What will be an ideal response?
```
//create borders
Border line = BorderFactory.createLineBorder (Color.blue);
Border bevel = BorderFactory.createRaisedBevelBorder();
Border etched = BorderFactory.createEtchedBorder();
// create inner compound border
Border compound = BorderFactory.createCompoundBorder
(bevel, line);
// create final compound border
Border final = BorderFactory.createCompoundBorder
(etched, compound);
```
You might also like to view...
If you want to apply slide master changes to other presentations, you must save the presentation as a(n) ________
Fill in the blank(s) with correct word
With the Dodge Tool, when the ____ option is selected, shadow clipping is minimized, and the tool attempts to brighten without shifting the hue of affected colors.
a. No Hue Shifting b. Selective Brightening c. Protect Tones d. Minimize Shadow Clipping
You are writing a program that defines a variable within a loop, and then tries to use that variable outside the loop. However, the program does not run as intended. What is the issue?
A. The variable is being overwritten inside the loop. B. The variable is declared with an incorrect type. C. The variable is limited to the scope of the loop. D. The variable name conflicts with a built in keyword.
To move to the right one word, press the ____ key(s).
A. ALT+RIGHT ARROW B. F1 C. CTRL+RIGHT ARROW D. RIGHT+ARROW