Asked by Manmeet Sanger on Jun 07, 2024

verifed

Verified

A ____ is a special type of linked list in which objects can only be added to and removed from the top of the list.

A) heap
B) stack
C) queue
D) set

Special Type

In programming, refers to a data type that has unique properties or behaviors differing from standard data types.

  • Familiarize with the concept and implementation of queues in C.
verifed

Verified Answer

AT
Alyssa TrevizoJun 14, 2024
Final Answer :
B
Explanation :
A stack is a data structure where elements are added and removed from the top, following a Last In, First Out (LIFO) principle.