This assignment involves work with the LinkedList collectionclass. You will use the LinkedList class to represent a list ofwords.
Similar functionality to this lab may be needed in the nextprogram assignments where you will create a multi-class programthat implements a Deck of cards and then a hand of cards needed fora game. There will be various data manipulation requirements, suchas searching, sorting, inserting, removing, and maintainingdata.
For this lab, create a class that represents alist of words with no duplicate entries.Do not use a stack or Queueclass, only a LinkedList object should be used here.
Your class should have:
- An ID block identifying you
- a
OROR