Multiple choice

Which of the following is not related to stack data structure?

  1. LIFO

  2. Push and pop

  3. Front and rear

  4. Both (1) and (3)

  5. None of these

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

These terms are not related to the stack data structure . Front and rear are the terms related to queue data structure, in which all the insertion are performed only at one end, called rear and all the deletion are performed at one end, called front end.