You are on page 1of 3

KENDRIYA VIDYALAY SANGATHAN, RAIPUR REGION

HALF YEARLY QUESTION PAPER 2016


CLASS XI
COMPUTER SCIENCE (083)
Time-3 hours M.M-70

Q1. Answer the following questions: -


A. Write the name of any two mobile operating system.
B. Define cache memory.
C. Expand RISC and CISC.
D. Briefly distinguish between analog and digital computer.
E. Difference between CD and DVD.
F. Convert the following number into its equivalent-
I.(EA54)16=(?)10 II. (FACE)16=(?)2 III. (288)10=(?)8
Q2. Answer the following questions-
A. Define algorithm.
B. Mention the language processor which convert High level language program into
machine level language program by using line by line mechanism. C. Describe the two
phase of Program development process?
D. Describe Freeware and Shareware.
E. Draw a flowchart weather a given number is even or odd.
F. Differentiate between Compile time error and Run time error.
Q3. Answer the following question: -
A. Expand the term ISCIZ.
B. What is a port.
C. Find the ones complement of -14.
D. Difference between RAM and ROM.
E. Why is bus used in computer? Define some commonly used busies in Microprocessor.
Q4. Answer the following question: -
A. Define tokens in C++.
B. What is difference between a and a in C++?
C. Which manipulator represent the new line character in C++?
D. What will be the output of-
int a=5;
cout<<a++<<endl<<++a;
E. What do you mean by inbuilt functions in C++?
F. Evaluate the following: -
int a,b=10,c=5;
a=b*3/4+c/4-b+5/6;
cout<<a;
Q5. Answer the following questions: -
A. What will be the output of the following program: -
#include<iostream.h>
#include<conio.h>
void main ()
{
int x=1,y=2,z=4;
clrscr();
x=(z++)+(y/z);
cout<<x;
}
B. Write a program to find weather a number is palindrome or not.
C. Write a program in C++ to find average and percentage of 5 subjects when maximum
marks are 100.
Q6. Answer the following questions: -
A. Differentiate between exit-controlled loop and entry-control loop.
B. Write C++ expression for the following mathematical expression:-

I. 2+2 II.(a+b)/(p+q)2
C. Find the output of the following C++ code: -
#include<iostream.h>
void main ()
{
int x=10, y=5,z=3;

for(x=15;x>=y;x--)
{
if(x%3)
z+=x;
else

z+=2*x;
cout<<x<<z<<endl;
x-=6;
}
D. How can you give a single line and multiline comment in C++, Explain with suitable
example?
E. Which header file are required for: -
I.puts() II.sqrt() III.rand() IV. Isupper()
F. Write a C++ program to print Fibonacci series 1,1,2,3,5,8, up to n terms enterd by user.

**************

You might also like