
Write legibly to receive good rating.

Write legibly to receive good rating. Consider a CRC code with a generator polynomial of g(x)...
Consider a message D 110100111011001110111. Calculate the CRC code R for that message using a generator-polynomial x4+x+1 (CRC-4-ITU) . Represent in binary code the message to be sent (D and R). Generate 2-bit burst error (erasure error) and show the checking procedure.
starter code
To write a program using the starter code which is
TestLinkedList to see if the LinkedList program has bugs. It will
produce ether a pass or fail.More information is in the first two
pictures.
LinkedList.java
/**
* @author someone
*
* Implements a double-linked list with four errors
*/
public class LinkedList<E>
{
// The first and last nodes in the list
private Node<E> head, tail;
// Number of items stored in the list
private int size;
//...