CBSE Class 11 Computer Pointers Worksheet

Find the CBSE Class 11 Computer Pointers Worksheet right below. We offer detailed and printable Class 11 Computer Science worksheets for Pointers, updated for the 2026-27 term. Each resource matches official syllabus rules from NCERT, CBSE, and KVS to support effective student revision.

Download Class 11 Computer Science Pointers Printable Sheet

Check out this Computer Science practice paper designed for Class 11 learners. Working through these problems for Pointers, along with the provided solutions, makes self-evaluation easy and helps you secure top marks in school exams and final tests.

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 Class 11 Computer Science Worksheet: Pointers

Practice Exercises for Class 11 Computer Science

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.

Verified Solutions & Answer Formats

These exercises draw directly from the authorized NCERT book for Class 11 Computer Science to maintain academic accuracy. Evaluating your finished work against our expert solutions helps you master the formal answer-writing standards expected in CBSE exams. Explore the accompanying MCQ sets for Computer Science to ensure full preparation across all chapter concepts.

Maximizing Academic Performance in Class 11

Using this Class 11 Computer Science study material consistently prepares you for standard testing trends. For any tricky concepts encountered in Pointers, our detailed NCERT solutions for Class 11 Computer Science offer reliable guidance. Every revision sheet and assignment on our platform is completely free and updated to help Class 11 learners excel academically.

FAQs

Where can I download the 2026-27 CBSE printable worksheets for Class 11 Computer Science Pointers?

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

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

Yes, Class 11 Computer Science worksheets for 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 Pointers worksheets have answers?

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

Can I print these 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 Pointers?

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