Introduction - If you have any usage issues, please Google them yourself
The static (circular) queue should be implemented as a class named StaticCircularQueue With
a maximum of 100 integer elements,
The Dynamic queue should be implemented as a class named DynamicQueue,
The Dynamic queue must not be restricted to a particular size and should be implemented
Using inheritance the SinglyLinkedList class previously studied in class,
Five operations should be provided for each implementation, these are: enQueue, DeQueue,
front, size, and isEmpty,
Main method with relevant operations for testing the above two classes, and
The test results.