Skip to main content
Chapter 3 of 13
Syllabus

Stack

CBSE · Class 12 · Computer Science

Complete topic list for Stack in CBSE Class 12 Computer Science. Key concepts, sub-topics, and what to focus on for board exams.

30 questions25 flashcards5 concepts
4 Topics · CBSE Class 12 Computer Science

Topics in Stack

1

Introduction to Stack

  • Stack is a linear data structure with LIFO (Last-In-First-Out) principle
  • Elements are added and removed from the same end called 'TOP'
  • Real-life examples: pile of plates, stack of books, bangles on wrist
2

Stack Operations

  • PUSH operation: Adds element to the top of stack
  • POP operation: Removes and returns top element from stack
  • isEmpty(): Checks if stack is empty
3

Implementation of Stack in Python

  • Python lists can be used to implement stacks efficiently
  • append() method adds elements to the right end (top of stack)
  • pop() method removes elements from the right end (top of stack)
4

Expression Notations

  • Infix notation: operators between operands (x + y)
  • Prefix notation: operators before operands (+xy)
  • Postfix notation: operators after operands (xy+)

Key Concepts

A linear data structure where elementsLastInsertion operation that adds a newDeletion operation that removes the topmostDifferent ways to write arithmetic expressions

Get detailed syllabus for Stack

Super Tutor gives you interactive content for every chapter of CBSE Class 12 Computer Science — summaries, quizzes, flashcards, and more.

Try Super Tutor — It's Free

Frequently Asked Questions

What are the important topics in Stack for CBSE Class 12 Computer Science?

Stack covers several key topics that are frequently asked in CBSE Class 12 board exams. Focus on the core concepts listed on this page and practise related questions to build confidence.

Start by understanding all key concepts. Practise previous year questions from this chapter. Revise formulas and definitions regularly. Use flashcards for quick revision before the exam.

Sources & Official References

Content is aligned to the official syllabus. Refer to the board website for the latest curriculum.