Java Problem: Please answer both parts of the question
fully:
(a). Write Java code for a method to test if a
LinkedList<Long> has Long values that form a Fibonacci
sequence from the beginning to the end and return true if it is and
false otherwise. A sequence of values is Fibonnaci if every third
value is equal to sum of the previous two. Eg., 3,4,7,11,18,29 is a
Fibonacci sequence whereas 1,2,3,4 is not, because 2+3 is not equal
to 4....