Polynomial Arithmetic
1. How is a polynomial stored using a linked list?
2. In multiplication of polynomials using linked lists, what is the next step after multiplying each term of one polynomial with the other polynomial?
3. How is addition on polynomial expressions performed using linked lists?
4. How is subtraction on polynomial expressions performed using linked lists?