Write the code to build a JComboBox named sideDish with no arguments. Then, create the addItem() methods to provide options for "Fries", "Salad", and "Fruit".
What will be an ideal response?
JComboBox
sideDish.addItem("Fries");
sideDish.addItem("Salad");
sideDish.addItem("Fruit");
Computer Science & Information Technology