CBSE Class 11 Computer Science Question Paper Set V Solved

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

More Study Material

Previous Year Question Paper Computer Science Class 11

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. If you do CBSE Class 11 Computer Science Question Paper Set V Solved for Class 11 Computer Science you will easily understand the way examination question papers are set by teachers.

Class 11 Computer Science Previous Year Question Papers

The past year question papers CBSE Class 11 Computer Science Question Paper Set V Solved covers all the topics which have been suggested by CBSE in their Class 11 Computer Science syllabus for the current year. 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.

Class 11 Computer Science Model Question Paper Pdf Download

We have provided links above of CBSE Class 11 Computer Science Question Paper Set V Solved in Pdf format so that you can just click the links and easily download the papers with answers. On studiestoday, we have also provided a download and print option for all CBSE Class 11 Computer Science last year papers and Sample Papers for Class 11 Computer Science to make it more easy for students. You can download CBSE Class 11 Computer Science Previous Year Question Papers and Class 11 Computer Science Sample Papers in PDF absolutely free of cost.

Computer Science Previous Year Question Papers Class 11 with Solutions

We have provided CBSE Class 11 Computer Science Question Paper Set V Solved with solutions. You will be able to understand the type of answers which you should write in Class 11 Computer Science exams to score good marks. 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. This way you will be able to identify your weak areas and also understand how the teachers of Class 11 Computer Science set their questions in the exams.

CBSE Class 11 Computer Science Previous Year Question Papers with solutions

We have provided the last 10 years Class 11 Computer Science Question Papers. Students who want to practice question papers from all previous years can easily get them on studiestoday. We are the leading website in India from which you can download all the latest Class 11 Computer Science study material for free as per the CBSE syllabus for Class 11 Computer Science for the current academic year.
 

Where can I download CBSE Class 11 Computer Science Question Paper Set V Solved in Pdf

You can download CBSE Class 11 Computer Science Question Paper Set V Solved from StudiesToday.com

Can I download the previous year Question Papers of Class 11 Computer Science in Pdf

Yes, you can click on the links above and download Question Papers in PDFs for Class 11 for Computer Science. Click on above link to download CBSE Class 11 Computer Science Question Paper Set V Solved

Is the Class 11 Computer Science Question Paper available for the latest session

Yes, the CBSE Class 11 Computer Science Question Paper Set V Solved issued for Class 11 Computer Science have been made available here for latest academic session

How can I download and print CBSE Class 11 Computer Science Question Paper Set V Solved

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

Is there any charge for CBSE Class 11 Computer Science Question Paper Set V Solved

There is no charge for CBSE Class 11 Computer Science Question Paper Set V Solved you can download everything free

How can I improve my scores by solving CBSE Class 11 Computer Science Question Paper Set V Solved

Regular practice of sample question paper given on studiestoday for CBSE Class 11 Computer Science Question Paper Set V Solved can help you to score better marks in exams

Are there any websites that offer free CBSE Class 11 Computer Science Question Paper Set V Solved

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

Can model paper CBSE Class 11 Computer Science Question Paper Set V Solved be accessed on mobile devices

Yes, studiestoday provides CBSE Class 11 Computer Science Question Paper Set V Solved in Pdf and can be accessed on smartphones and tablets.

Are mock CBSE Class 11 Computer Science Question Paper Set V Solved available in multiple languages

Yes, mock CBSE Class 11 Computer Science Question Paper Set V Solved are available in multiple languages, including English, Hindi