InterviewSolution
Saved Bookmarks
| 1. |
How can we remove an object from ArrayList?(a) remove() method(b) using Iterator(c) remove() method and using Iterator(d) delete() methodThis question was addressed to me in homework.This intriguing question comes from Data Structures-List topic in portion java.util – The Collections Framework of Java |
|
Answer» The CORRECT option is (c) remove() method and using Iterator |
|