CBSE Class 12 Computer Science Question 57 of 63

Data Structures in Python — Question 5

Back to all questions
5
Question

Question 5

When a queue is implemented with the help of a list, it is termed as a linear queue.

Answer

True

Reason — When a queue is implemented using a list, it is referred to as a linear queue. The syntax is : Queue = list() or Queue = [].