1.Every javafx.event.Event object has the ________ method.
A.getSource()
B.getActionCommand()
C.getTimeStamp()
D.getWhen()
E.getKeyChar()
2.The code in a thread that is different than the main/UI thread should directly manipulate user interface elements?
True
False
3.What is the Factory OO design pattern?
A.A method that fills an ArrayList based on a data source.
B.Saving object data to files using serialization.
C.Using a method to create objects without having to specify the exact class of the object to be produced.
D.Using a thread to construct objects based on a timer tick.
4.Objects of a subclass can be assigned to a super class reference.
True
False
5.What is the Factory OO design pattern?
A.A method that fills an ArrayList based on a data source.
B.Saving object data to files using serialization.
C.Using a method to create objects without having to specify the exact class of the object to be produced.
D.Using a thread to construct objects based on a timer tick.
6.The 'this' keyword is used to resolve conflicts between method parameters and instance fields/methods of the invoked class.
True
False