Multiple choice Which of the following statements is not true about a stack data structure? In a stack, data is stored from only one side. It is called 'top of stack'. At a time only one item can be inserted or deleted in a stack. In a stack, after insertion operation, the value of top is decremented. Stack is a linear data structure. Stack is called LIFO [last in first out]. Reveal answer Fill a bubble to check yourself C Correct answer Explanation It is not a true statement about a stack. Since in a stack after insertion operation, the value of top is incremented.