CBSE Class 12 Computer Science Question 53 of 63

Data Structures in Python — Question 1

Back to all questions
1
Question

Question 1

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

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.