Multiple choice

“Get a Node, store new element and Insert the new node at the top” refers to insert operation in non empty

  1. Stack

  2. Queue

  3. Array

  4. None of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The stack insertion operation (push) adds a new node to the top of the stack. The description matches this exactly: create a node, store the element, and insert at the top (the only insertion point in a stack).