Xi Computer Science Set 1
Xi Computer Science Set 1
Candidates are required to give answers in their own words as far as practicable. Figures in
the margin indicate full marks.
Group "A"
Rewrite the best alternative of each question in your answer sheet. (9 × 1=9)
1. Which one of the following are input devices?
a) Keyboard, Mouse, Printer b) Mouse, Keyboard, Monitor
c) Scanner, Keyboard, Mouse d) Mouse, Keyboard, Screen
2. Parallel ports consists of______ pins.
a) 22 b) 23
c) 24 d) 25
3. The given Venn- diagram represents _____ gate.
a) OR b) AND
c) NOR d) NAND
4. A computer cannot “boot” if it does not have
a) Assembler b) Compiler
c) Operating System d) Interpreter
5. In Ms-Word, You can use styles to
a) delete text in documents b) make copies of documents
c) format your documents d) save changes to documents
6. What will be the output of the C program?
#include<stdio.h>
int main()
{
int i = 3;
int a = ++i;
printf("%d",a);
return 0;
}
a) 2 b) 3
c) 4 d) compilation error
7. What is the null character in C strings?
a) '\0' b) '\t'
c) '\n' d) '\1'
8. Which of the following is/are examples of protocol?
a. FTP b) HTTP
c) IP d) all of the above
9. In multimedia, what does 'FPS' stand for?
a) Frames Per Second b) Files Per Second
c) Format Processing System d) Free Processing Speed
Group 'B'
Give short answers to the following questions. [5 × 5=25]
10. Explain different types of printers with examples. [2.5+2.5]
OR
What is multimedia? Explain the different components of multimedia. [1+4=5]
11. Explain about WINDOWS operating system with three distinct features. [2+3]
12. Perform the following operations. [1+1+1+2]
a. 12.310=?2
b. A216=?10
c. (101+110)2
d. (110-11)2 using 2’s complement
OR
Define spreadsheet. Explain any four functions used in Ms-excel. [1+4]
13. Make a small section of a webpage using HTML that introduces a fictional
technology company named "Tech Innovations". The section should include a
title for the company, a brief description, and a highlight of their core values
using bold and italic formatting for emphasis. [1+2+2]
[ Note:-Take the contents yourself.]
14. Write a C program to display the following series using while loop and for
loop. [2.5+2.5]
5,9,13 …Up to 15th term.
[Note: use the same program for both the loops.]
Group 'C'
Give long answers to the following questions. [2 × 8=16]
15. Draw the logical diagram of computer architecture ? Explain the units
(control,ALU and memory) in brief. [2+(2+2+2)]
OR
What do you mean by universal gate? Derive AND,OR and NOT gates using
NAND and NOR universal gates. [2+3+3]
16. a. What is an array? Write down its types along with examples. [1+1+1]
b. Write a C program to input two matrices of order 3x3, subtract them and
display in proper format. [5]