Class 11 Computer Science Solved Question Papers: CBSE Class 11 Computer Science Question Paper Set 12 Solved
Access comprehensive previous year question papers for Class 11 Computer Science using the CBSE Class 11 Computer Science Question Paper Set 12 Solved. Designed to align with the 2026-27 CBSE academic guidelines, these solved papers help students assess their exam readiness and understand official marking schemes.
Download Class 11 Computer Science Question Paper PDF
View or download the dedicated CBSE Class 11 Computer Science Question Paper Set 12 Solved resource below. Engaging with these previous year papers under timed conditions ensures continuous academic progress and mastery of the 2026-27 exam format.
1. a. What is a Variable? What is the difference between signed and unsigned data types?
b. What is integral promotion? What will be the result of 7%4 & 7.2%3.1?
c. What output the following will produce :
int a=10;
cout<<a<<(a==10)<<(a=5)<<a;
int i=5;
cout<<i++<<i++<<endl;
cout<<++i<<++i<<endl;
d. Name the type of errors in the following situations :
(a) A variable used before its initialization
(b) Divide by zero error
(c) Use of = instead of == in if statement
(d) Statement missing semicolon
2. a. Give the header files to which the following in-built functions belong to :
(i) isdigit() (ii) strcpy()
b. Write one difference each for the following :
i. puts( ) and cout statement.
ii. strlen( ) and strcmp( )
c. Predict the output of the following C++ Program assume all the required header files are included
void main()
{
for(int n1=0; n1<2;++n1)
for(int n2=1;n2<=3;n2+=2)
cout<<n2<<'\t'<<n1<<'\t';
cout<<endl;
}
d. Predict the output of the following C++ Program when the input is
(a) 'M' (b) 'K' (c) 'A' (d) 'X' (Assume all required header files are included)
void main()
{ char ch;
cin>>ch;
switch(ch)
{ case 'M': cout<<"Merit Award"<<endl;
case 'A': cout<<"Annual Award"<<endl;
case 'K': cout<<"Khimji Award"<<endl;
break;
case 'E': cout<<"Athletic Award"<<endl;
default : cout<<"Error Enter correct code !!!";
}
}
e. Identify and correct the errors in the following C++ code assume all required header files are included :
void main()
{int num=4;
do
{ ans=*num;
cout<ans;
} while(num<10)
}
f. Write a C++ Program to generate the following pattern :
1 2 3 4 5
1 2 3 4
1 2 3
1 2
1
g. Write a C++ program to find and print the sum of digits of a number entered by the user.
3.a. Answer the following questions as instructed:
(i) Find the number of elements and number of bytes required for the multidimensional array X[5][20] of double type .
(ii) Assign the value 88 to 5th element of the array A[10].
b. Rewrite the following program after removing all the errors, underline each correction.
#include<iostream.h>
void main()
{ int sum[ 2][ ];
int total=3.5;
sum[2][3]= {1,2,3,4,7,8};
for(int i=0;i<2;i++)
for( j=0;j<=3;i++)
{ total=total+sum;
cout<<sum[j]; }
}
c. Find out the output for the following program assume all required header files are included :
void main()
{ int a[5]= {2,10,15,20,25};
int i, j, k;
i = ++a[0] ;
j= a[2]++;
k= a[i];
cout<<i<<'\t'<<j<<'\t'<<k<<endl;
for(int x=0;x<5;x+=2)
cout<<a[x];
}
d. Predict the output for the following program assume all the required header files are included:
void main()
{ char s[]="#47 NaTiOnaL Day#";
int x;
x=strlen(s);
for(int i=0;i<x;++i)
{ if (isdigit(s[i]))
s[i]='$';
else if(isalpha(s[i]))
{if (islower(s[i]))
s[i]=toupper(s[i]);
else
s[i]=s[i+1];
}
else
s[i]='@'; }
cout<<"\n Now the String is : "<<s;
}
4 a. Write a program in C++ which accepts a 2D array of integers and its size and displays the elements of middle row and the elements of middle column [Assuming the 2D Array to be a square matrix with odd dimension i.e. 3x3, 5x5, 7x7 etc...] Example, if the array contents is
3 5 4
7 6 9
2 1 8
Output should be :
Middle Row : 7 6 9
Middle column : 5 6 1
b. Write a program to accept an integer array A[10] from the user and swap the elements of every even location with its following odd location and display it.
For example: if the content of the array is
2,4,1,6,5,7,9,23,10,55
The content of the array become
4,2,6,1,7,5,23,9,55,10
c. Write a program to input 5 strings and sort the strings in the ascending order.
d. Write a program to read a string str. Count and display number of words in the string.
5 a. What is a structure? How do you access structure members explain with an example.
b. Define a structure EMPREC that stores information about an employee such as empno (long int), name (20 characters), address (30 characters), salary (float) and jod (date). Where jod stores information of type date with members day (integer), month (integer) and year (integer). Declare a variable emp and initialize it with valid values.
c. Rewrite the corrected code for the following program underline each correction :
#include<iostream.h>
void main()
{
structure club{ int mem no;
char memname[20];
char memtype[ ]="LIG";
}
club per1,per2;
cout<<"\n Enter the details";
cin>>memno;
gets(per1.memname);
gets(per1.memtype);
per1=per2; //assign values of per1 to per2
cout<<per2;
}
d. Predict the output for the following program assume all the required header files are included:
void main()
{
struct box { int x,y,z; };
box T={10,20,5},T1;
int Step=5;
T.x+=Step;
T.y-=Step;
T.z+=Step;
cout<<T.x<<","<<T.y<<","<<T.z<<endl;
++Step
T.x+=Step;
T.y*=Step;
T.z-=Step;
T1=T;
cout<<T1.x<<","<<T1.y<<","<<T1.z<<endl;
}
Please click on below link to download CBSE Class 11 Computer Science Question Paper Set L Solved
CBSE Class 11 Computer Science Question Paper Set 12 Solved & Previous Year Question Papers for Class 11 Computer Science
Previous Year Question Papers: Class 11 Computer Science
Explore downloadable past papers for Class 11 Computer Science. Utilizing the CBSE Class 11 Computer Science Question Paper Set 12 Solved ensures complete preparedness by offering clear insights into historical question styles and marking expectations.
Boost Your Exam Score with Past Papers
Regular simulation of exam environments using past question documents builds crucial pacing abilities and eliminates last-minute test anxiety during Class 11 Computer Science assessments.
Enhance Practice with Sample Papers & Solutions
Download digital copies of these papers for convenient offline revision anywhere. Cross-check your completed steps against our expert solution guides to ensure complete accuracy.
FAQs
The CBSE Class 11 Computer Science Question Paper Set 12 Solved is available for download on StudiesToday.com. It includes complete set with all sections so that Class 11 students can practice with the exact same paper that came in the CBSE exams.
Yes, the solutions for CBSE Class 11 Computer Science Question Paper Set 12 Solved are prepared by subject matter experts as per official marking scheme. Class 11 students will understand the structure of answers and 'step-marks' methodology Computer Science.
Solving previous year papers like CBSE Class 11 Computer Science Question Paper Set 12 Solved is important to understand repeat themes and question difficulty levels of Computer Science. It helps Class 11 students to test their time management skills too.
Yes, where applicable, CBSE Class 11 Computer Science Question Paper Set 12 Solved is available in both English and Hindi mediums. All students from Class 11 can access Computer Science study material in their preferred language.
No, all previous year question papers on StudiesToday, including CBSE Class 11 Computer Science Question Paper Set 12 Solved, are provided free of charge in mobile-friendly PDF.