Java Essentials Flashcards

1
Q

Arrays

A

An array is a container object that holds a fixed number of values of a single type.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Button listener

A
b.addActionListener(new ActionListener(){  
			public void actionPerformed(ActionEvent e){  
				System.out.println("I'm here");  
		}
	});
How well did you know this?
1
Not at all
2
3
4
5
Perfectly