AP divs can do any of the following EXCEPT ____.

A. be drawn in Code view
B. be made invisible
C. be animated
D. have their stacking order changed


Answer: A

Computer Science & Information Technology

You might also like to view...

Properly prepared graphics are an excellent way of telling a story and expressing a key point, whether to a jury or a client.

Indicate whether the statement is true or false.

Computer Science & Information Technology

Enhance the memo saver GUI in Listing 15.1 in all of the following ways:

• Add another menu called Scroll Bars that offers the user three choices: Never, Always, and As Needed. When the user makes a choice, the scroll bars are displayed according to the choice. • When the user clicks the close-window button, another window pops up and asks the user whether to end the program, as was done in Listing 15.10. This program is best done by adding one feature at a time and judiciously copying code from examples on the CD that comes with the text. To obtain the exit pop-up window, start with the code from CloseWindowDemo, Listing 15.10 and add to it. For example, add a call to ConfirmWindow() in the actionPerformed method if the ActionEvent is “Exit”. The setDefaultCloseOperation code is necessary to get the pop-up window when the exit button (the “X” in the upper left corner of the window) is clicked, and the call in actionPerformed is necessary to get the window when “Close” in the “Memos” menu is selected. Next, add the nested menus and make sure it works before actually coding the events for the options. Next, add functionality to the “View” menu options. Unfortunately, there is no program from which to copy the code to make the “Scroll Bars” options functional, but it is mostly a matter of going through “The JScrollPane Class for Scroll Bars” section of Chapter 15 and following the directions. Note that the following line is necessary to make the change visible immediately after selecting any of these options: ``` SwingUtilities.updateComponentTreeUI(this); ```

Computer Science & Information Technology

Draw four triangles of different sizes. Each triangle should be filled with a different color (or fill style).

What will be an ideal response?

Computer Science & Information Technology

A(n) ____________________ is a system-level response to the occurrence of some specific condition.

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

Computer Science & Information Technology