Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Big Java Late Objects
Quiz 10: Graphical User Interfaces
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
Which container is used to group multiple user-interface components together?
Question 2
Multiple Choice
Which of the following is an event source?
Question 3
Multiple Choice
What is the nickname for the graphical user interface library in Java?
Question 4
Multiple Choice
Which statement should be added to this code fragment to ensure that the frame is shown? JFrame frame = new JFrame() ;
Question 5
Multiple Choice
A/an ____ object contains methods that describe the actions to be taken when a user clicks a user-interface graphical object.
Question 6
Multiple Choice
Place drawing instructions inside the __________ method, which is called whenever the component needs to be repainted.
Question 7
Multiple Choice
To associate an event listener with a JButton component, you must use the ___ method of the JButton class.
Question 8
Multiple Choice
When an event occurs, the event source notifies all associated ____.
Question 9
Multiple Choice
Which of the following statements should be added to this code fragment to set the frame size to a width of 400 and a height of 200? Final int FRAME_WIDTH = 400; Final int FRAME_HEIGHT = 200; JFrame frame = new JFrame() ;