Read and download the CBSE Class 12 Computers Data Structures Worksheet in PDF format. We have provided exhaustive and printable Class 12 Computer Science worksheets for Data Structures, designed by expert teachers. These resources align with the 2026-27 syllabus and examination patterns issued by NCERT, CBSE, and KVS, helping students master all important chapter topics.
Chapter-wise Worksheet for Class 12 Computer Science Data Structures
Students of Class 12 should use this Computer Science practice paper to check their understanding of Data Structures as it includes essential problems and detailed solutions. Regular self-testing with these will help you achieve higher marks in your school tests and final examinations.
Class 12 Computer Science Data Structures Worksheet with Answers
Q1. IMPLEMENT STACK AS LINKED LIST AND STORE THE OBECT OF TYPE DISTANCE CLASS(METRES , CENTIMETRES) IN EACH NODE.
PROGRAM MUST HAVE PUSH AND POP FUNCTIONS THAT INSERT AND DELETE A NODE FROM THE STACK RESPECTIVELY.
THERE SHOULD BE A TOP POINTER THAT POINTS TO THE TOPMOST ELEMENTS OF THE STACK.
YOUR PROGRAM MUST CONSIDER ALL CASES THAT CAN LEAD TO AN ERROR.
PROGRAM SHOULD BE MENU DRIVEN THAT CONTINUES TILL THE USER WANTS.
DECLARE MEMBER FUNCTIONS IN THE CLASS DISTANCE AS PER YOUR REQUIREMENT.
PROGRAM SHOULD PRINT NEW STACK AFTER EACH OPERATION.
Q2. IMPLEMENT STACK AS ARRAY OF MAXIMUM DIMENSION 10 AND STORE THE OBECT OF TYPE DISTANCE CLASS(METRES , CENTIMETRES) AS EACH ELEMENT OF THE ARRAY..
PROGRAM MUST HAVE PUSH AND POP FUNCTIONS THAT INSERT AND DELETE AN ELEMENT FROM THE STACK RESPECTIVELY.
THERE SHOULD BE A TOP VARIABLE THAT STORES THE INDEX OF THE TOPMOST ELEMENT OF THE STACK.
YOUR PROGRAM MUST CONSIDER ALL CASES THAT CAN LEAD TO AN ERROR.
PROGRAM SHOULD BE MENU DRIVEN THAT CONTINUES TILL THE USER WANTS.
DECLARE MEMBER FUNCTIONS IN THE CLASS DISTANCE AS PER YOUR REQUIREMENT.
PROGRAM SHOULD PRINT NEW STACK AFTER EACH OPERATION
Q3 IMPLEMENT LINEAR QUEUE AS LINKED LIST AND STORE THE OBECT OF TYPE DISTANCE CLASS(METRES , CENTIMETRES) IN EACH NODE.
PROGRAM MUST HAVE INSERT AND DELETE FUNCTIONS THAT INSERT AND DELETE A NODE FROM THE QUEUE RESPECTIVELY.
THERE SHOULD BE A FRONT AND REAR POINTERS THAT POINTS TO THE FIRST AND LAST ELEMENTS OF THE QUEUE RESPECTIVELY.
YOUR PROGRAM MUST CONSIDER ALL CASES THAT CAN LEAD TO AN ERROR.
PROGRAM SHOULD BE MENU DRIVEN THAT CONTINUES TILL THE USER WANTS.
DECLARE MEMBER FUNCTIONS IN THE CLASS DISTANCE AS PER YOUR REQUIREMENT.
PROGRAM SHOULD PRINT NEW QUEUE AFTER EACH OPERATION
Q4 IMPLEMENT LINEAR QUEUE AS ARRAY OF MAXIMUM DIMENSION 10 AND STORE THE OBECT OF TYPE DISTANCE CLASS(METRES , CENTIMETRES) AS
EACH ELEMENT OF THE ARRAY..
PROGRAM MUST HAVE INSERT AND DELETE FUNCTIONS THAT INSERT AND DELETE A NODE FROM THE QUEUE RESPECTIVELY.
THERE SHOULD BE A FRONT AND REAR VARIABLE THAT CONTAINS THE INDEX OF THE FIRST AND LAST ELEMENT OF THE QUEUE RESPECTIVELY.
YOUR PROGRAM MUST CONSIDER ALL CASES THAT CAN LEAD TO AN ERROR.
PROGRAM SHOULD BE MENU DRIVEN THAT CONTINUES TILL THE USER WANTS.
DECLARE MEMBER FUNCTIONS IN THE CLASS DISTANCE AS PER YOUR REQUIREMENT.
PROGRAM SHOULD PRINT NEW QUEUE AFTER EACH OPERATION.
Q5 IMPLEMENT CIRCULAR QUEUE AS LINKED LIST AND STORE THE OBECT OF TYPE DISTANCE CLASS(METRES , CENTIMETRES) IN EACH NODE.
PROGRAM MUST HAVE INSERT AND DELETE FUNCTIONS THAT INSERT AND DELETE A NODE FROM THE QUEUE RESPECTIVELY.
THERE SHOULD BE A FRONT AND REAR POINTERS THAT POINTS TO THE FIRST AND LAST ELEMENTS OF THE QUEUE RESPECTIVELY.
YOUR PROGRAM MUST CONSIDER ALL CASES THAT CAN LEAD TO AN ERROR.
PROGRAM SHOULD BE MENU DRIVEN THAT CONTINUES TILL THE USER WANTS.
DECLARE MEMBER FUNCTIONS IN THE CLASS DISTANCE AS PER YOUR REQUIREMENT.
PROGRAM SHOULD PRINT NEW QUEUE AFTER EACH OPERATION
Q6 IMPLEMENT CIRCULAR QUEUE AS ARRAY OF MAXIMUM DIMENSION 10 AND STORE THE OBECT OF TYPE DISTANCE CLASS(METRES , CENTIMETRES)
AS EACH ELEMENT OF THE ARRAY..
PROGRAM MUST HAVE INSERT AND DELETE FUNCTIONS THAT INSERT AND DELETE A NODE FROM THE QUEUE RESPECTIVELY.
THERE SHOULD BE A FRONT AND REAR VARIABLE THAT CONTAINS THE INDEX OF THE FIRST AND LAST ELEMENT OF THE QUEUE RESPECTIVELY.
YOUR PROGRAM MUST CONSIDER ALL CASES THAT CAN LEAD TO AN ERROR.
PROGRAM SHOULD BE MENU DRIVEN THAT CONTINUES TILL THE USER WANTS.
DECLARE MEMBER FUNCTIONS IN THE CLASS DISTANCE AS PER YOUR REQUIREMENT.
PROGRAM SHOULD PRINT NEW QUEUE AFTER EACH OPERATION.
Q7 struct node {int x,y; };
class queue { node *front, *rear ;
public :
queue( ) { -----}
void insertq( ){-------}
void deleteq( ){-----}
~queue(){----}
};
COMPLETE THE CLASS DEFINITION PERTAINING TO LINKED QUEUE.
Q8 struct node {int x,y; };
class queue { node *front, *rear ;
public :
queue( ) { -----}
void insertq( ){-------}
void deleteq( ){-----}
~queue(){----}
};
COMPLETE THE CLASS DEFINITION PERTAINING TO CIRCULAR LINKED QUEUE.
Q9 struct node {int x,y; };
class queue { node front, rear ;
public :
queue( ) { -----}
void insertq( ){-------}
void deleteq( ){-----}
~queue(){----}
};
COMPLETE THE CLASS DEFINITION PERTAINING TO STATIC QUEUE.
Q10 struct node {int x,y; };
class queue { node front, rear ;
public :
queue( ) { -----}
void insertq( ){-------}
void deleteq( ){-----}
~queue(){----}
};
COMPLETE THE CLASS DEFINITION PERTAINING TO STATIC CIRCULAR QUEUE
Q11 struct node {int x,y; };
class stack{ node top ;
public :
stack( ) { -----}
void inserts( ){-------}
void deletes( ){-----}
~stack(){----}
};
COMPLETE THE CLASS DEFINITION PERTAINING TO STATIC STACK
Q12 struct node {int x,y; };
class stack{ node *top ;
public :
stack( ) { -----}
void inserts( ){-------}
void deletes( ){-----}
~stack(){----}
};
COMPLETE THE CLASS DEFINITION PERTAINING TO LINKED STACK
| All Chapters Printable Worksheet Set 3 |
| All Chapters Printable Worksheet Set 2 |
| All Chapters Printable Worksheet Set 1 |
| Arrays Stacks Queues And Linked List Printable Worksheet Set 2 |
| Arrays Stacks Queues And Linked List Printable Worksheet Set 1 |
| Boolean Algebra Printable Worksheet |
| Boolean Algebra Printable Worksheet Set 2 |
| Boolean Algebra Printable Worksheet Set 1 |
| C++ Programming Printable Worksheet |
| Case Study Based Questions Printable Worksheet |
| Class And Objects Printable Worksheet Set 2 |
| Class And Objects Printable Worksheet Set 1 |
| Classes And Objects Printable Worksheet |
| Classes Objects Constructors And Destructors Printable Worksheet |
| Communication And Network Concepts Printable Worksheet |
| Computer Networking Printable Worksheet |
| Constructors And Destructors Printable Worksheet |
| Constructors And Destructors Printable Worksheet |
| Data File Handling Printable Worksheet |
| Data Structures Printable Worksheet |
| Database Concepts And Sql Printable Worksheet |
| Dbms And Structured Query Language Printable Worksheet |
| Flow Of Control Printable Worksheet |
| Function And Structures Printable Worksheet |
| Function Overloading Printable Worksheet |
| Fundamentals Of Computer Printable Worksheet |
| Inheritance Printable Worksheet |
| Inheritance Extending Classes Printable Worksheet |
| Linked Lists Stacks And Queues Printable Worksheet |
| Network And Communication Technology Printable Worksheet |
| Networking Printable Worksheet |
| Object Oriented Programming Printable Worksheet |
| Object Oriented Programming Printable Worksheet |
| Object Oriented Programming In C++ Printable Worksheet |
| Oop Classes And Objects Printable Worksheet |
| Pointer Printable Worksheet |
| Pointers Printable Worksheet |
| Program List Printable Worksheet |
| Programming In C++ Printable Worksheet |
| Stacks Queues And Linked List Printable Worksheet |
| Sure Shot Questions Printable Worksheet Set 4 |
| Sure Shot Questions Printable Worksheet Set 3 |
| Sure Shot Questions Printable Worksheet Set 2 |
| Sure Shot Questions Printable Worksheet Set 1 |
| Text Files Printable Worksheet |
Free study material
CBSE Computer Science Class 12 Data Structures Worksheet
Students can use the practice questions and answers provided above for Data Structures to prepare for their upcoming school tests. This resource is designed by expert teachers as per the latest 2026 syllabus released by CBSE for Class 12. We suggest that Class 12 students solve these questions daily for a strong foundation in Computer Science.
Data Structures Solutions & NCERT Alignment
Our expert teachers have referred to the latest NCERT book for Class 12 Computer Science to create these exercises. After solving the questions you should compare your answers with our detailed solutions as they have been designed by expert teachers. You will understand the correct way to write answers for the CBSE exams. You can also see above MCQ questions for Computer Science to cover every important topic in the chapter.
Class 12 Exam Preparation Strategy
Regular practice of this Class 12 Computer Science study material helps you to be familiar with the most regularly asked exam topics. If you find any topic in Data Structures difficult then you can refer to our NCERT solutions for Class 12 Computer Science. All revision sheets and printable assignments on studiestoday.com are free and updated to help students get better scores in their school examinations.
FAQs
You can download the latest chapter-wise printable worksheets for Class 12 Computer Science Chapter Data Structures for free from StudiesToday.com. These have been made as per the latest CBSE curriculum for this academic year.
Yes, Class 12 Computer Science worksheets for Chapter Data Structures focus on activity-based learning and also competency-style questions. This helps students to apply theoretical knowledge to practical scenarios.
Yes, we have provided solved worksheets for Class 12 Computer Science Chapter Data Structures to help students verify their answers instantly.
Yes, our Class 12 Computer Science test sheets are mobile-friendly PDFs and can be printed by teachers for classroom.
For Chapter Data Structures, regular practice with our worksheets will improve question-handling speed and help students understand all technical terms and diagrams.