03 - Collections Flashcards

1
Q

What does ADT stand for?

A

Abstract Data Type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly