For this question, refer back to the code in linkedchain.java If the first line of the add method was changed from:

 Node newNode = new Node(newEntry); 

to

 Node newNode = new Node(newEntry, null); 
It wouldn’t impact the final linked chain
  • The linked chain would be empty
  • Only the last element would end up in the linked chain
  • Only the first element would end up in the linked chain

hint 2 would go here