Read and download CBSE Class 11 Computer Science Question Paper Set V Solved designed as per the latest question paper pattern and Class 11 examination guidelines issued by CBSE, NCERT and KVS. The past year Question Papers for Class 11 Computer Science have been provided with solutions which will help students to assess their performance and find out topics in Computer Science Class 11 which they need to improve to get better marks in Class 11 exams. After solving these last year papers also refer to solved Sample Papers for Class 11 Computer Science available on our website to build strong understanding of the subject
Computer Science Question Paper Class 11
Students can refer to the below Class 11 Computer Science Question Paper designed to help students understand the pattern of questions that will be asked in Class 11 exams. Please download CBSE Class 11 Computer Science Question Paper Set V Solved
Computer Science Class 11 Question Paper
1 a. Arrange the memory units from smallest to biggest Giga Byte, Kilo Byte, Zeta Byte, Byte.
b. Distinguish between a Compiler and an interpreter.
c. Define the following terms :
(i) Operating System (ii) Application software
d. Convert the following as instructed :
(i) (215.63)8 = ( )2 (ii) (E7.8D)16 = ( )10
e. Write a short note on the following
(i) Hybrid computers.
(ii) Explain the functional components of a Computer with a neat block diagram
2 a. Define the following terms :
(i) Robustness (ii) Pretty printing
b. Write a short note on the following:
(i) Adaptive maintenance (ii) Explain any four characteristics of a good program
c. Write an algorithm to input marks and print PASS if marks are more than 32 otherwise print FAIL.
d. Draw a flow chart to print sum of first 50 even numbers.
3 a. Answer the following :
(i) What do you mean by cascading of Input output operators in C++.
(ii) What do you mean by logical errors. Give an example.
(iii) What is the meaning of type casting.
b. What are C ++ comments? Give example.
c. What is the range and size in bytes of the following data types: (i) int (ii) char
d. What are derived data type and name any two of them.
e. Write a C++ Program to input three integers and print the smallest of three using conditional operator.
f. Answer the following questions :
(i) Evaluate the expression (++c + a>b) || (c%2+5>a/5) where a=1, b=2, c=3
(ii) Give the output :
int ch=5;
cout << ++ch<< "\t"<<ch+1<<"\n";
(iii)Construct logical expression to represent: Either marks are more than 80 or grade is ‘A’.
4. a. Convert the code given in for loop to equivalent while loop.
#include<iostream.h>
void main()
{ int num, a ,b ,c ,d ;
for (a=1 , num = 12; a<num ; a++)
{ b = num % a;
if (b==0)
cout<<a<<endl;
}
cout<<”Press any key to continue”;
}
b. Rewrite the following program after removing the error(s), if any. Underline each correction:
void main()
{ int i=5,x[5]=[1,2,4,5,6];
int const j=10;
++i;
j+=i;
cout<<x[i];
}
c. Write a C++ Program to generate the following pattern using nested loop :
1
2 1
3 2 1
4 3 2 1
5 4 3 2 1
4 3 2 1
3 2 1
2 1
1
d. Find the output of the following : (Assume all the necessary header files are included)
void main()
{int A[]={10,12,15,17,20,30};
for(int i = 0; i<6; i++)
{ if(A[i]%2==0)
A[i] /= 2;
else if(A[i]%3==0)
A[i] /= 3;
if(A[i]%5==0)
A[i] /=5;
}
for(i = 0; i<6; i++)
cout<<A[i]<<”#”; }
e. Write a program in C++ which accepts an integer array of size n. Exchange the value of all negative elements with their positive equivalent. Display the original array and the modified array.
Example:
If an array contains: ‒2, 4, ‒1, 6, ‒7, 9, ‒23, 10
The function should rearrange the array as: 2, 4, 1, 6, 7, 9, 23, 10
5 a. Anil has started learning C++ and has typed the following program. When he compiled the following code written by him, he discovered that he needs to include some header files to successfully compile and execute it. Write the names of those header files, which are required to be included in the code.
void main()
{ char Txt[] = "Welcome";
for(int C= 0;C<strlen(Txt);++C)
cout<<Txt[C] ;
cout<<endl; }
b. Look at the following C++ code and find the possible output(s) from the options (i) to (iv) and justify your answer. Assume all required header files are included.
void main( )
{ randomize( );
int PICKER,H=5;
PICKER=random(H)+30;
for(int i=35;i>PICKER;i--)
cout<<i<<’$’; }
(i) 35$34$33$32$31$30$ (ii) 35$34$33$32$31$
(iii) 30$31$32$33$34$35$36$ (iv) 35$34$33$32$31$30$
c. Write a program to check a string is palindrome or not using built in function.
d. An array stores details of 25 students (rollno, name, and marks in three subjects, total ). Write a program to create such an array and print out a list of students who have scored more than 75% in total.
6 a. Predict the output of the following program. Assume all required header files are already being included in the program :
int a=30;
void print(int &x,int z,int y=10)
{ int temp=z+y;
x+=temp;
if(y==10)
cout<<x<<temp<< "\n"; }
void main( )
{ int a=15, b=40;
print(::a,a);
cout<<a<<::a;
print(b,::a,a);
cout<< "\t"<<a<<b; }
b. Write a program to read 3 X 3 matrix. Display both the diagonal elements along with their respective sum.
Example:
1 2 4
4 5 6
7 8 9
Major Diagonal : 1+5+9 = 15
Minor Diagonal : 4+5+7 = 16
c. Answer the following :
(i) Write an user defined function vcount() which takes a string as an argument and converts it into uppercase and returns the number of vowels in it.
(ii) Define a macro with an example.
d. Write a program using function to check whether a number is perfect number or not. Give the function name as “PERFECT”. Accept the number in the main ( ) function, Pass this number to the function and display the result from the function.
Please click on below link to download CBSE Class 11 Computer Science Question Paper Set V Solved
CBSE Class 11 Computer Science Question Paper Set V Solved
We hope you liked the above provided CBSE Class 11 Computer Science Question Paper Set V Solved. To get an understanding of the type of questions which were asked in previous year exams, it is important for Class 11 students to refer to CBSE Class 11 Computer Science Question Paper Set V Solved that we have provided above. Students can download all the Question Papers for Class 11 Computer Science which were issued in the exams so that you can practise them and solve all types of questions which have been asked till now. By doing all CBSE Class 11 Computer Science Question Paper Set V Solved PYP (previous year papers) you will understand the regular questions and MCQ questions for Class 11 Computer Science which are always asked and learn them so that you can get full marks in those questions. You can download CBSE Class 11 Computer Science Previous Year Question Papers and Class 11 Computer Science Sample Papers in PDF. You should attempt all the last year question paper for Class 11 and Class 11 Computer Science MCQ Test in examination conditions at home and then compare their answers with the solutions provided by our teachers.
Importance of solving CBSE Class 11 Computer Science Question Paper Set V Solved
By regularly practicing CBSE Class 11 Computer Science Question Paper Set V Solved students will be able to improve marks in Class 11 Computer Science exams. These question papers provide a very clear idea about the exam and paper structure, marking scheme, and frequently asked questions by teachers. By solving CBSE Class 11 Computer Science Question Paper Set V Solved, students can improve their time management skills and also learn to answer Computer Science questions correctly within the Class 11 exam duration. Apart from learning concepts and solving the CBSE Class 11 Computer Science Question Paper will help you to boost your practical experience and also build confidence to face the actual examination.
Benefits of downloading CBSE Class 11 Computer Science Question Papers in PDF
Downloading the CBSE Class 11 Computer Science Question Paper Set V Solved in PDF format will help you to read these papers anytime and anywhere. These question papers with answers act as a reliable tool to revise key concepts, practice numerical problems, and understand the correct approach to answer each question. By attempting the CBSE Class 11 Computer Science Question Paper Set V Solved, you can assess your preparation level and identify weak areas on which you have to focus upon. Along with these question papers our teachers say that you should solve Sample Papers for Class 11 Computer Science to improve overall preparation.
You can download CBSE Class 11 Computer Science Question Paper Set V Solved from StudiesToday.com
You can easily access the link above and download CBSE Class 11 Computer Science Question Paper Set V Solved and save on your computer of mobile
Regular practice of sample CBSE Class 11 Computer Science Question Paper Set V Solved can help you to score better marks in exams
Yes, studiestoday.com provides all latest CBSE Class 11 Computer Science Question Papers with answers based on the latest format issued for current academic session
Yes, mock CBSE Class 11 Computer Science Question Paper Set V Solved are available in multiple languages, including English, Hindi