What kind of variable is label?
public class Labeller extends JFrame { public Labeller () { JLabel label = new JLabel("Field or Variable"); } public static void main (String[] args) { new Labeller(); } }
There are no hints for this question