Access the latest CBSE Class 11 Computer Science Worksheet Set G Solved. We have provided free printable Class 11 Computer Science worksheets in PDF format, specifically designed for All Chapters. These practice sets are prepared by expert teachers following the 2025-26 syllabus and exam patterns issued by CBSE, NCERT, and KVS.
All Chapters Computer Science Practice Worksheet for Class 11
Students should use these Class 11 Computer Science chapter-wise worksheets for daily practice to improve their conceptual understanding. This detailed test papers include important questions and solutions for All Chapters, to help you prepare for school tests and final examination. Regular practice of these Class 11 Computer Science questions will help improve your problem-solving speed and exam accuracy for the 2026 session.
Download Class 11 Computer Science All Chapters Worksheet PDF
1. Write the names of the header files to which the following functions belong:
i) islower( ) ii) strcpy( )
2. What are the formal parameters and actual parameters of a function?
3. Write definition for a structure EREC that stores information about an employee such as empid, name, address and salary. The address member of EREC stores the information houseno, area and city.
4. How is call-by-value method of function invoking different from call-by-reference method?
Give appropriate examples supporting your answer.
5. Illustrate the use of #define in C++ to define a macro.
6. Give the output of the following program:
#include
void Calc(int &X, int Y=200)
{int TEMP = X + Y;
X += TEMP;
if(Y != 200)
cout<
int main()
{
int A=50, B=20;
Calc(B);
cout<Calc(B);
cout<return 0;
}
7. Write a program using functions to accept a string and a character in the main( ) function. Pass this string and the character to a function named check( ), check how many times the character is present in the string and display the result within the function check( ).
8. Define a structure customer with the following members : Idno, name, units and amount. Write a C++ Program to read Idno, name and number of units consumed for n customers and compute amount as per the following criteria :
Units Amount
1 - 100 200 baiza per unit
101 -300 400 baiza per unit
> 300 500 baiza per unit
For example , if the units consumed is 350, then
amount = 100*0.200 + 200*0.400 + 50*0.500
Display Idno, name, number of units and total amount for n customers.
9. Write a program using functions to check whether a number is perfect or not. The function name is Perfect( ).The number is accepted within the function and result is displayed within the function.
VALUE POINTS
1. i) ctype.h
ii) string.h
2. Formal parameters – parameters appear in the parameter list of function header.
Actual parameters- parameters appear in the function call.
3. struct address
{int houseno;
char area[26];
char city[26];
};
struct EREC - 1 mark
{
int empid;
char name[20];
address adr;
float salary;
};
4. Call by value method
1. In this method, the values of actual parameters are copied into the formal parameters and the fn. Works with its own copy of values
2. The changes in the formal parameters will not be reflected into the actual parameters.
3. The main benefit of this method is that you cannot alter the variables that are used to call the fn. And the original copy of the argument value remains intact.
Any example
Call by reference method
1. In this method, the reference to the original values is passed in the fn.
2. The same value can now be accessed by the original variable name and the reference variable name.
3. Thus, the called fn. Does not create its own copy of the original values, rather it refers to the original values with different names.
4. Thus any change with the data in the fn. Is reflected back in main().
Any example
5. Macro: A macro is a single line function with or without arguments. A macro without arguments is treated like a symbolic constant. A macro with arguments has its arguments substituted for replacement text when macro is expanded.
A macro substitutes text only and does not check for datatypes.
e.g. #define SQUARE(X) X * X
void main()
{
---
cout<
O/P 25
- 1 mark explanation
- 1 mark example
6. Output:
50240
50680
- 1 mark for each correct line
7. for declaration & input statements
for correct logic
for displaying
8. for declaration & input statements
for correct logic
for displaying
9. for declaration & input statements
for correct logic
for displaying
Please click on below link to download CBSE Class 11 Computer Science Worksheet Set G Solved
| CBSE Class 11 Computer Science Python Modules Worksheet |
| CBSE Class 11 Computer Science Strings Worksheet |
| CBSE Class 11 Computer Science Lists Worksheet |
| CBSE Class 11 Computer Science Dictionary And Sorting Worksheet |
| CBSE Class 11 Computer Science Tuples Worksheet |
All Chapters CBSE Class 11 Computer Science Worksheet
Students can use the All Chapters practice sheet provided above to prepare for their upcoming school tests. This solved questions and answers follow the latest CBSE syllabus for Class 11 Computer Science. You can easily download the PDF format and solve these questions every day to improve your marks. Our expert teachers have made these from the most important topics that are always asked in your exams to help you get more marks in exams.
NCERT Based Questions and Solutions for All Chapters
Our expert team has used the official NCERT book for Class 11 Computer Science to create this practice material for students. After solving the questions our teachers have also suggested to study the NCERT solutions which will help you to understand the best way to solve problems in Computer Science. You can get all this study material for free on studiestoday.com.
Extra Practice for Computer Science
To get the best results in Class 11, students should try the Computer Science MCQ Test for this chapter. We have also provided printable assignments for Class 11 Computer Science on our website. Regular practice will help you feel more confident and get higher marks in CBSE examinations.
You can download the teacher-verified PDF for CBSE Class 11 Computer Science Worksheet Set G Solved from StudiesToday.com. These practice sheets for Class 11 Computer Science are designed as per the latest CBSE academic session.
Yes, our CBSE Class 11 Computer Science Worksheet Set G Solved includes a variety of questions like Case-based studies, Assertion-Reasoning, and MCQs as per the 50% competency-based weightage in the latest curriculum for Class 11.
Yes, we have provided detailed solutions for CBSE Class 11 Computer Science Worksheet Set G Solved to help Class 11 and follow the official CBSE marking scheme.
Daily practice with these Computer Science worksheets helps in identifying understanding gaps. It also improves question solving speed and ensures that Class 11 students get more marks in CBSE exams.
All our Class 11 Computer Science practice test papers and worksheets are available for free download in mobile-friendly PDF format. You can access CBSE Class 11 Computer Science Worksheet Set G Solved without any registration.