CBSE Class 11 Computer Pointers Worksheet

Class 11 Computer Science Practice Sheet: CBSE Class 11 Computer Pointers Worksheet

Review targeted academic worksheets with the CBSE Class 11 Computer Pointers Worksheet. Built according to official educational standards for the 2026-27 term, these downloadable Class 11 Computer Science resources support effective daily practice and detailed self-evaluation for Pointers.

Download Pointers Worksheet PDF with Answers

View or download the dedicated CBSE Class 11 Computer Pointers Worksheet resource below. Engaging with these practice papers under focused study conditions ensures continuous academic progress and mastery of the 2026-27 curriculum for Pointers.

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 Worksheets for Pointers

Download Chapter Worksheets: Class 11 Computer Science

Access structured practice worksheets for Pointers aligned with the 2026 CBSE curriculum. These downloadable exercises for Class 11 Computer Science help students build accuracy and reinforce core concepts for upcoming school tests.

Concept Clarification for Pointers

Each worksheet draws directly from authorized standard textbooks to maintain academic accuracy. Evaluating your finished exercises against expert-verified solutions helps master the formal presentation standards expected in school evaluations.

Effective Revision Strategies for School Exams

Follow up your worksheet practice by attempting the interactive online MCQ tests for Pointers to evaluate your execution speed. All printable assignments and revision sheets on our platform are updated for the 2026 session and available free of charge.

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.