Stack
Assam Board · Class 12 · Computer Science
Summary of Stack for Assam Board Class 12 Computer Science. Key concepts, important points, and chapter overview.
Interactive on Super Tutor
Studying Stack? Get the full interactive chapter.
Quizzes, flashcards, AI doubt-solver and a step-by-step study plan — built for chapter summary and more.
1,000+ Class 12 students started this chapter today

Super Tutor has 10+ illustrations like this for Stack alone — flashcards, concept maps, and step-by-step visuals.
See them allOverview
Stack is a linear data structure in which elements are added and removed from one end only, called TOP. It follows the LIFO principle, meaning the last element inserted is the first one removed. Python implements a stack conveniently using the list data type with append() and pop(). Stack is useful
Key Concepts
A stack is a linear data
A stack is a linear data structure in which insertion and deletion happen from one end only, called TOP. The most recent element is removed first.
LIFO means Last
LIFO means Last-In-First-Out. The element inserted last is the first one to be removed.
TOP is the end from
TOP is the end from which elements are added or deleted. In Python list-based implementation, this is the rightmost end.
PUSH is the insertion operation on
PUSH is the insertion operation on a stack, and POP is the deletion operation. PUSH adds an element at TOP, while POP removes the topmost element.
Overflow occurs when an element
Overflow occurs when an element is added to a full stack. Underflow occurs when an element is removed from an empty stack.
Learning Objectives
- Define stack as a linear data structure and identify the TOP
- Explain the LIFO principle clearly
- Describe PUSH and POP operations and their exceptions
- Understand stack implementation in Python using list, append(), and pop()
- Use stack-related functions such as isEmpty, size, top, opPush, opPop, and display
Frequently Asked Questions
What are the important topics in Stack for Assam Board Class 12 Computer Science?
How to score full marks in Stack — Assam Board Class 12 Computer Science?
Sources & Official References
Content is aligned to the official syllabus. Refer to the board website for the latest curriculum.
More resources for Stack
Practice Quiz
Test yourself with a quick quiz
Important Questions
Practice with board exam-style questions
Revision Notes
Key points for last-minute revision
Formula Sheet
All formulas in one place
Concept Maps
See how topics connect visually
Study Plan
Step-by-step plan to ace this chapter
Flashcards
Quick-fire cards for active recall
Syllabus
What topics to cover
NCERT Solutions
Every textbook question solved step by step
For serious students
Get the full Stack chapter — for free.
Quizzes, flashcards, AI doubt-solver and a step-by-step study plan for Assam Board Class 12 Computer Science.