I believe the answer is A but i am not too sure :/
Answer:
See explaination
Explanation:
class YourSimpleLinkedList<E> extends SimpleLinkedList<E> {
public boolean search(E value) {
if (value == null)
throw new IllegalArgumentException();
Item temp = start;
while (temp != null) {
if (temp.value.equals(value))
return true;
temp = temp.next;
}
return false;
}
}
Answer
input
Explanation:
modern ones are now input
Marie could either ask a friend or her parents to peer edit it and tell her if its good enough or if she should work on it more.<span />