CBSE Class 11 Computer Pointers Worksheet

Read and download the CBSE Class 11 Computer Pointers Worksheet in PDF format. We have provided exhaustive and printable Class 11 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 11 Computer Science Pointers

Students of Class 11 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 11 Computer Science Pointers Worksheet with Answers

Pointers

1. What is the difference between static and dynamic allocation of memory. Explain with example.

2. Illustrate the use of this pointer with an example.

3. Differentiate between new and delete operators.

4. Explain self referential structures with example.

5. Differentiate between the following statements :

(i) int *ptr=new int(5); and int *ptr=new int[5];

6. Explain the relationship between arrays and pointers.

7. Predict the output of the following program :

(i) #include<iostream.h>

void main()

{

intmyarr[]={5,10,15,20,25};

int *p;

for(p=&myarr[0];p<=&myarr[4];p++)

cout<<*p<<endl;

}

(ii) #include<iostream.h>

#include<ctype.h>

#include<string.h>

voidnewtext(char string[],int&pos)

{

char *p=string;

intlen=strlen(string);

for(;pos<len-2;pos+=2,p++)

{

*(p+pos)=toupper(*(p+pos));

}

}

void main()

{

intloc=0;

char Message[]=”What a Show”;

newtext(Message,loc);

cout<<Message<<’#’<<loc;

}

PROGRAMS

(Do all programs using pointers only)

(1) WAP to check whether a string is a palindrome or not.

(2) Write a menu driven program to swap two numbers using Call by Value, Call by reference and pointers.

(3) WAP that has a user defined function taking a string as an argument and finding the length ofthe passed string.

CBSE Computer Science Class 11 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 11. We suggest that Class 11 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 11 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 11 Exam Preparation Strategy

Regular practice of this Class 11 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 11 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 11 Computer Science Chapter Pointers?

You can download the latest chapter-wise printable worksheets for Class 11 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 11 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 11 Computer Science Chapter Pointers worksheets have answers?

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

Can I print these Chapter Pointers Computer Science test sheets?

Yes, our Class 11 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 11 Chapter Pointers?

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