Multiple choice What type of data structure is a queue? LIFO linear data structure FIFO linear data structure LIFO non-linear data structure FIFO non-linear data structure GIGO non-linear data structure Reveal answer Fill a bubble to check yourself B Correct answer Explanation A queue is a First-In-First-Out (FIFO) data structure. In a FIFO data structure, the first element added to the queue will be the first one to be removed.. A queue is an example of a linear data structure, or more abstractly a sequential collection.