Suppose that you create an application in which you instantiate a JFrame named frame1 and a JLabel named label1. Which of the following statements within the application adds label1 to frame1?
1) (frame1);
2) (label1);
3) (frame1.add(label1));
4) two of the above