Question 1
The method ________ adds an item s into a ComboBox cbo.
◦ cbo.add(s)
◦ cbo.addObject(s)
◦ cbo.getItems().add(s)
◦ cbo.addItem(s)
◦ cbo.addChoice(s)
Question 2
Which of the following statements are true?
◦ ComboBox inherits from Node.
◦ ComboBox inherits from Labelled.
◦ ComboBox inherits from Control.
◦ ComboBox inherits from ButtonBase.
◦ ComboBox inherits from ComboBoxBase.