Question: Java help me quickly please given the following code, how are the components displayed? (1 Point) Given the following code import java.awt.*; import javax.swing.* public

 Java help me quickly please given the following code, how are

the components displayed? (1 Point) Given the following code import java.awt.*; import

Java help me quickly please

given the following code, how are the components displayed? (1 Point) 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 1); frame.add(new JButton("OK")); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSI 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!