QUEUE-DSA NO. Questions Types of QUEUES 1 what-is-QUEUE 2 QUEUE-using-linked-list 3 QUEUE-implementation | 1 | what is QUEUE 1.1 what is queue QUEUEs is also mentained as 'ADT': Abstract data types It has the name called FIFO : FIRST IN FIRST OUT means Front end process would be Delection at front and Insertion at the back end 1.2 suppose if we Add() value 5 it will insert in front end of the QUEUE suppose if we Add() value 7 it will insert in front end of the QUEUE suppose if we Add() value 8 it will insert in front end of the QUEUE suppose if we Add() value 9 it will insert in front end of the QUEUE [5,7,8,9] suppose if we Remove() value 5 it will delete the front of the QUEUE 1.3 | 2 | queueusingLinkedlist 2.1 2.2 3