CBSE Class 12 Computers Pointers Worksheet

Read and download the CBSE Class 12 Computers Pointers Worksheet in PDF format. We have provided exhaustive and printable Class 12 Computer Science worksheets for Pointers, designed by expert teachers. These resources align with the 2025-26 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 Pointers

Students of Class 12 should use this Computer Science practice paper to check their understanding of Pointers 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 Pointers Worksheet with Answers

Q1 EXPLAIN THE STATEMENT int * ptr ;

Q2 WHAT IS THE DIFFERENCE BETWEEN STACK AND HEAP?

Q3 MAKE A DIAGRAM OF CONCEPTUAL MEMORY MAP.

Q4 WHAT IS THE DIFFERENCE BETWEEN A POINTER VARIABLE AND A SIMPLE VARIABLE?

Q5 WHAT IS FREE POOL OF MEMORY?

Q6 GIVE AN EXAMPLE OF DECLARATION AND INITIALIZATION OF POINTERS

Q7 WHAT IS NULL VALUE ?

Q8 WHAT ARITHMETIC OPERATIONS ARE POSSIBLE ON POINTERS? HOW ?

Q9 EXPLAIN new AND delete OPERATORS

Q10 WHAT IS THE RETURN VALUE OF new WHEN THERE IS INSUFFICIENT MEMORY AVAILABLE ?

Q11 WHAT IS THE LIFETIME OF A VARIABLE CREATED WITH new?

Q12 DOES delete OPERATOR ACTUALLY DELETES THE MEMORY ?

Q13 WHAT IS MEMORY LEAK ? WHAT ARE ITS CAUSES ?

Q14 DIFFERENTIATE BETWEEN POINTER TO CONSTANT AND CONSTANT POINTER.

Q15 WHAT IS THE DIFFERENCE BETWEEN PASS BY REFERENCE AND PASS BY POINTER ?

Q16 IS (*P)++ AND ++*P SAME ?

Q17 ARE THE ABOVE STATEMENTS VALID?
int *p=60;
char *p=”hello”;

Q18 EXPLAIN INT *P[10];

Q19 int * p[5];
int a=1,b=2,c=3,d=4,e=5;
p[0]=&e;      p[1]=&d;      p[2]=&c;      p[3]=&b;      p[4]=&a;
cout<<p; cout<<*p; cout<<*(*p); cout<<**(p+3); cout<<**p+5;
cout<<**(p+1) + 7;

Q20 int x[3][3]={ { 3,2,1},{6,5,4},{9,8,7}};
int *p=&x[0][0];
cout<<(*(p+1)+1);
cout<<*(p+2);
cout<<*(*p+2)+6;
cout<<++*p;
cout<<*(*(p+2) +1);

Q21 WHAT IS THE ADVANTAGE OF ARRAY OF POINTERS TO STRINGS OVER ARRAY OF STRINGS? .

Q22 WHAT ARE SELF REFERENTIAL STRUCTURES?

Q23 WHAT IS this POINTER? WHY IT IS USED?

Q24 EXPLAIN char **ptr? IF ptr=&p; AND p=&a AND char a=’G’;
WHAT IS THE O/P O F THE FOLLOWING STATEMENTS?
cout<<a;
cout<<*p;
cout<<*ptr;
cout<<**ptr;
cout<<ptr;
cout>>p;

Q25 WRITE A C++ PROGRAM THAT TAKES A STRING FROM THE USERAND USING POINTERS DO THE FOLLOWING-------
A. CHECK IT’S A PALINDROME OR NOT
B. COUNT NO. OF VOWELS
C. COUNT NO. OF WORDS
D. CONVERT ALL E’S TO I’S
E. REVERSE EACH WORD.
NOTE: USE DYNAMIC INITIALIZATION OF THE STRING

Q26 DIFFERENTIATE BETWEEN STATIC AND DYNAMIC ALLOCATION OF MEMORY .

CBSE Computer Science Class 12 Pointers Worksheet

Students can use the practice questions and answers provided above for Pointers 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.

Pointers 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 Pointers 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.

Where can I download the 2025-26 CBSE printable worksheets for Class 12 Computer Science Chapter Pointers?

You can download the latest chapter-wise printable worksheets for Class 12 Computer Science Chapter Pointers for free from StudiesToday.com. These have been made as per the latest CBSE curriculum for this academic year.

Are these Chapter Pointers Computer Science worksheets based on the new competency-based education (CBE) model?

Yes, Class 12 Computer Science worksheets for Chapter Pointers focus on activity-based learning and also competency-style questions. This helps students to apply theoretical knowledge to practical scenarios.

Do the Class 12 Computer Science Chapter Pointers worksheets have answers?

Yes, we have provided solved worksheets for Class 12 Computer Science Chapter Pointers to help students verify their answers instantly.

Can I print these Chapter Pointers Computer Science test sheets?

Yes, our Class 12 Computer Science test sheets are mobile-friendly PDFs and can be printed by teachers for classroom.

What is the benefit of solving chapter-wise worksheets for Computer Science Class 12 Chapter Pointers?

For Chapter Pointers, regular practice with our worksheets will improve question-handling speed and help students understand all technical terms and diagrams.