KnowledgeBoat Logo

Computer Science

A Queue is a:

  1. FIFO (First In First Out) list
  2. LIFO (Last In First Out) list
  3. Ordered array
  4. Linear tree

Python Queue

3 Likes

Answer

FIFO (First In First Out) list

Reason — A Queue is a FIFO (First In First Out) list, meaning that the item that is first inserted into the queue is also the first one to be removed.

Answered By

3 Likes


Related Questions