Read and download PDF of CBSE Class 11 Computer Science Sample Paper Set 2 designed as per the latest curriculum and examination pattern for Class 11 issued by CBSE, NCERT and KVS. The latest Class 11 Computer Science Sample Papers have been provided with solutions so that the students can solve these practice papers and then compare their answers. This will help them to identify mistakes and improvement areas in Computer Science Standard 11 which they need to study more to get better marks in Grade 11 exams. After solving these guess papers also refer to solved Class 11 Computer Science Question Papers available on our website to build strong understanding of the subject
Computer Science Sample Paper Class 11
Students can refer to the below Class 11 Computer Science Sample Paper designed to help students understand the pattern of questions that will be asked in Grade 11 exams. Please download CBSE Class 11 Computer Science Sample Paper Set 2
Computer Science Class 11 Sample Paper
Q.No.1
a. Write the header file for the given function
abs(), isdigit(), sqrt(), setw()
b. Define Microcomputer
c. what is data and what is the output of data processing system
d. what is the function of memory and what are its measuring units
e. what do you mean by language processor.
f. what is the difference between save and save as command.
g. Expand the following:
i)CPU ii) ROM iii)MICR iv)CD-R
Q.No.2
a. Rewrite the following code after removing the syntax error if any. Underline the correction
#include <iostream.h>
jampto(int, int )
void main()
{
first=10, second=20;
jumpto(first;second);
jumpto(second);
}
void jumpto(int n1, intn2=20)
{
n1=n1+n2;
}
(b) Find the output :
void result(int &x, int y=10)
{
int temp = x + y;
x + = temp;
if(y <=10)
y + = temp;
}
void main( )
{
int A1=10, B2=5;
result(A1, B2);
cout<<A1<<B2<<endl;
result(A1);
cout<<A1<<B2<<endl;
result(B2);
cout<<A1<<B2<<endl;
}
D. Find the output 3
#include <iostream.h>
void main( )
{
int i = 0, x = 0;
do
{
if(i % 5 = = 0)
{ cout<<x;
x++;
}
++ i;
}while(i<10);
cout<<‖\n‖<<x;
}
Refer to the attached file for CBSE Class 11 Computer Science Sample Paper Set 2.