Question: given the following code, how are the ?components displayed 1 (1 ) Given the following code import java.awt.*; import javax.swing.*; public class Test { public

given the following code, how are the ?components displayed 1 (1 ) Given the following code import java.awt.*; import javax.swing.*; public class Test { public static void main(String[] args) { JFrame frame = new JFrame("My Frame"); frame.add(new JButton("Cancel")); frame.add(new JButton("OK")); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(200, 200); frame.setVisible(true); } } Only button OK is displayed Both button OK and button Cancel are displayed, button OK is displayed on the right side of button OK Only button Cancel is displayed Both button OK and button Cancel are displayed , button OK is displayed on the left side of button OK
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
