Answer:
Select box
Explanation:
The HTML select box gives a lot of options where the user selects only on from many. it is defined as
<select>
<option>option 1</option>
<option>option 2</option>
<option>option 3</option>
</select>
Above is a select box having 3 options for the user to choose from. Apart from the select box HTML provides the radio button, which also gives the user the ability to select one from many.
Answer:
super("Title here");
Explanation:
JFrame is a Java swing class for displaying Frames in Graphical User Interface. The title of a JFrame can be set by calling super("Title here"); as the first statement in the constructor of your class that extends JFrame. This causes the constructor of the parent JFrame class to be called with the specified String argument and this String is then set as the title for the GUI frame.