Question: 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

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); OTAN
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
