CBSE Class 12 Computers Pointers Worksheet

Read and download free pdf of CBSE Class 12 Computers Pointers Worksheet. Students and teachers of Class 12 Computer Science can get free printable Worksheets for Class 12 Computer Science Pointers in PDF format prepared as per the latest syllabus and examination pattern in your schools. Class 12 students should practice questions and answers given here for Computer Science in Class 12 which will help them to improve your knowledge of all important chapters and its topics. Students should also download free pdf of Class 12 Computer Science Worksheets prepared by teachers as per the latest Computer Science books and syllabus issued this academic year and solve important problems with solutions on daily basis to get more score in school exams and tests

Worksheet for Class 12 Computer Science Pointers

Class 12 Computer Science students should refer to the following printable worksheet in Pdf for Pointers in Class 12. This test paper with questions and answers for Class 12 will be very useful for exams and help you to score good marks

Class 12 Computer Science Worksheet for Pointers

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 .

More Worksheets for Class 12 Computer Science
CBSE Class 12 Computer Science Arrays Stacks Queues And Linked List Worksheet Set A
CBSE Class 12 Computer Science Arrays Stacks Queues And Linked List Worksheet Set B
CBSE Class 12 Computer Science Arrays Worksheet
CBSE Class 12 Computer Science Boolean Algebra Worksheet Set A
CBSE Class 12 Computer Science Boolean Algebra Worksheet Set B
CBSE Class 12 Computer Science C++ Programming Worksheet
CBSE Class 12 Computer Science Case Study Based Questions
CBSE Class 12 Computer Science Class And Objects Worksheet Set A
CBSE Class 12 Computer Science Class And Objects Worksheet Set B
CBSE Class 12 Computer Science Classes Objects Constructors And Destructors Worksheet
CBSE Class 12 Computer Science Communication And Network Concepts Worksheet
CBSE Class 12 Computer Science Computer Networking Worksheet
CBSE Class 12 Computer Science Constructors And Destructors Worksheet
CBSE Class 12 Computer Science Data File Handling Worksheet
CBSE Class 12 Computer Science Database Concepts And Sql Worksheet
CBSE Class 12 Computer Science Dbms And Structured Query Language Worksheet
CBSE Class 12 Computer Science Flow Of Control Worksheet
CBSE Class 12 Computer Science Function Overloading Worksheet
CBSE Class 12 Computer Science Function And Structures Worksheet
CBSE Class 12 Computer Science Fundamentals Of Computer Worksheet
CBSE Class 12 Computer Science Inheritance Extending Classes Worksheet
CBSE Class 12 Computer Science Linked Lists Stacks And Queues Worksheet
CBSE Class 12 Computer Science Network And Communication Technology Worksheet
CBSE Class 12 Computer Science Object Oriented Programming In C++ Worksheet
CBSE Class 12 Computer Science Object Oriented Programming Worksheet
CBSE Class 12 Computer Science Oop Classes And Objects Worksheet
CBSE Class 12 Computer Science Pointer Worksheet
CBSE Class 12 Computer Science Program List Worksheet
CBSE Class 12 Computer Science Programming In C++ Worksheet
CBSE Class 12 Computer Science Revision Worksheet Set A
CBSE Class 12 Computer Science Revision Worksheet Set B
CBSE Class 12 Computer Science Revision Worksheet Set C
CBSE Class 12 Computer Science SQL Worksheet Set A
CBSE Class 12 Computer Science SQL Worksheet Set B
CBSE Class 12 Computer Science Stacks Queues And Linked List Worksheet
CBSE Class 12 Computer Science Sure Shot Questions Worksheet Set A
CBSE Class 12 Computer Science Sure Shot Questions Worksheet Set B
CBSE Class 12 Computer Science Sure Shot Questions Worksheet Set C
CBSE Class 12 Computer Science Sure Shot Questions Worksheet Set D
CBSE Class 12 Computer Science Text Files Worksheet
CBSE Class 12 Computers Boolean Algebra Worksheet
CBSE Class 12 Computers Classes And Objects Worksheet
CBSE Class 12 Computers Constructors And Destructors Worksheet
CBSE Class 12 Computers Data Structures Worksheet
CBSE Class 12 Computers Files Worksheet
CBSE Class 12 Computers Inheritance Worksheet
CBSE Class 12 Computers Networking Worksheet
CBSE Class 12 Computers Object Oriented Programming Worksheet
CBSE Class 12 Computers Pointers Worksheet

Worksheet for CBSE Computer Science Class 12 Pointers

We hope students liked the above worksheet for Pointers designed as per the latest syllabus for Class 12 Computer Science released by CBSE. Students of Class 12 should download in Pdf format and practice the questions and solutions given in the above worksheet for Class 12 Computer Science on a daily basis. All the latest worksheets with answers have been developed for Computer Science by referring to the most important and regularly asked topics that the students should learn and practice to get better scores in their class tests and examinations. Expert teachers of studiestoday have referred to the NCERT book for Class 12 Computer Science to develop the Computer Science Class 12 worksheet. After solving the questions given in the worksheet which have been developed as per the latest course books also refer to the NCERT solutions for Class 12 Computer Science designed by our teachers. We have also provided a lot of MCQ questions for Class 12 Computer Science in the worksheet so that you can solve questions relating to all topics given in each chapter.

Where can I download latest CBSE Printable worksheets for Class 12 Computer Science Pointers

You can download the CBSE Printable worksheets for Class 12 Computer Science Pointers for latest session from StudiesToday.com

Is there any charge for the Printable worksheets for Class 12 Computer Science Pointers

There is no charge for the Printable worksheets for Class 12 CBSE Computer Science Pointers you can download everything free

Are there any websites that offer free test sheets for Class 12 Computer Science Pointers

Yes, studiestoday.com provides all latest NCERT Pointers Class 12 Computer Science test sheets with answers based on the latest books for the current academic session

What topics are covered in CBSE Class 12 Computer Science Pointers worksheets?

CBSE Class 12 Computer Science Pointers worksheets cover all topics as per the latest syllabus for current academic year.

How can I use worksheets to improve my Class 12 Computer Science scores?

Regular practice with Class 12 Computer Science worksheets can help you understand all concepts better, you can identify weak areas, and improve your speed and accuracy.