Java 6 in 21 Days (5th Edition) Day 14: Developing Swing Applications

The cover of Teach Yourself Java 6 in 21 Days (5th Edition) by Rogers Cadenhead and Laura Lemay

Home Feedback Other Books Previous Day Next Day

Notes and Corrections

  • View the Certification Practice quiz solution
  • Certification answer: Answer (b) is correct. The application compiles successfully, but it does not display anything in the frame because nothing was added to the content pane. The slider should be added to the frame by calling pane.add(value) after the slider has been created.

    Answer (a) is incorrect. The application compiles but does not run correctly because it doesn't display the slider.

    Answer (c) is incorrect. The content pane is empty, but this does not prevent the application from compiling successfully.

    Answer (d) is incorrect. The new AskFrame() statement is correct. It calls the AskFrame constructor without assigning the object to a variable.

  • Page 383: The Java Web Start demos shown in Figure 14.1 on page 383 have moved. They now can be found on the archived demos page.

Source Files

Activities