03 - Collections Flashcards
1
Q
What does ADT stand for?
A
Abstract Data Type
2
Q
What operations are there in the Collections interface?
A
void add(Object obj); void remove(Object obj); void removeAll(Object obj); boolean contains(Object obj); int size(); Object elementAt(int index);