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
Java Illuminated
Quiz 12: Graphical User Interfaces Using Java FX
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
Which package does the EventHandler interface belong to?
Question 2
Multiple Choice
In JavaFX, which package does the ActionEvent class belong to?
Question 3
Multiple Choice
In JavaFX, clicking on a button generates a(n) :
Question 4
Multiple Choice
Selecting a radio button generates a(n) :
Question 5
Multiple Choice
Selecting a checkbox generates a(n) :
Question 6
Multiple Choice
When writing a class handling the selection of a slider, what interface should be implemented?
Question 7
Multiple Choice
How many areas inside a window does a BorderPane control?
Question 8
Multiple Choice
The __________ class, part of the javafx.scne.media package, enables us to play short sounds.
Question 9
Multiple Choice
JavaFx supports __________, an animation technique that gives the illusion of a property varying "between" two states by creating and displaying a series of intermediate frames over time.
Question 10
True/False
When coding a GUI, it is possible to do it either using an FXML file or programmatically.
Question 11
True/False
Using a JComboBox, it is possible to restrict the number of visible items in that combo box list.
Question 12
True/False
If a class implements a listener, it cannot listen to events the class generates.
Question 13
True/False
A PieChart or a BarChart can be bound to an ObservableList; if the data inside the ObservableList change, we need to call a method of either PieChart or BarChart in order to redraw the chart.
Question 14
Short Answer
The __________ method enables us to identify which component fired an event.
Question 15
True/False
The view in a GUI application can be made in an FXML file.
Question 16
True/False
The top-level structure in a JavaFX application is the stage, which corresponds to a window. A stage can have one or more nodes, which are top level containers for scenes that make up the window contents.