KnowledgeBoat Logo

Computer Science

Single-ended linear structure is a type of queue data structure.

Python Queue

1 Like

Answer

False

Reason — A single-ended linear structure is a type of stack data structure because a stack is a linear/sequence structure or a list of elements where insertion and deletion can only occur at one end, following the Last-In-First-Out (LIFO) principle.

Answered By

3 Likes


Related Questions