-
Which of this method is used to change an element in a LinkedList Object?
-
- redo()
- add()
- change()
- set()
- None of these
Correct Option: D
An element in a LinkedList object can be changed by first using get() to obtain the index or location of that object and the passing that location to method set() along with its new value.