Q19
In Java, how do you remove an element at a specific index from an ArrayList named list?
A.
list.remove(index);
AnswerB.
list.delete(index);
C.
list.pop(index);
D.
list.splice(index);
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board