Question 1: Write a statement to create a JFrame object with a title of "My GUI Application".
JFrame frame = new JFrame("My GUI Application");
Question 2: Write a Java statement to have the object from the question above manage its display area by dividing it into 3 rows which have 4 columns each.
Solve this Program using java programming concepts.