Sub. Code: 4271
GRADE XI (Management) 2078(2021)
Candidates are requested to give their answers in their own words as far as practicable. The figures in the margin indicate full marks.
Subject: Computer Science
Grade: XI Full Marks: 50
Time: 1.5 hrs
Grade: XI Full Marks: 50
Time: 1.5 hrs
Group 'A'
(Multiple Choice Questions)
Tick the best answer. [9×1=9]
(Multiple Choice Questions)
- Which one of the following is storage device?
- keyboard
- monitor
- hard disk
- printer
- Which of the following is NOT a ROM type?
- DROM
- PROM
- EPROM
- EEPROM
- Which of the following is not basic gate?
- NAND
- OR
- AND
- NOT
- android OS is developed by ...
- Apple
- Microsoft
- Amazon
- Which of the following is correct cell address?
- 4A
- A4
- A.4
- None
- What are the major components of selection structure?
- condition
- true statement
- false statement
- all
- Which one is the correct HTML code to give one space?
-
- &space;
- &sp;
- None
- Multimedia can be used in ...
- Education
- Entertainment
- Engineering
- All of them
- The basic components of information security are ...
- Confidentiality
- Integrity
- Availability
- All
- Explain primary memory of computer system.
OR Describe the hexadecimal to binary number conversion process with example. - Define operating system? Why GUI based operating system is more popular than CUI?
- Define CSS. Explain internal CSS with an example.
OR How multimedia can be used in education and business? Explain. - Differentiate between FOR and DO WHILE Loop
- What is computer ethics? What are the commandments of computer ethics?
- Draw block diagram of computer system. Explain control unit in details.
OR Write a program to subtract two 2x2 matrices. - Draw OR, NAND, NOR and XNOR gates with truth table and logic gates.
Group 'B'
Give short answer to the following questions. [5×5=25]
Group 'C'
Give long answer to the following questions. [2×8=16]
#include<stdio.h>
int main()
{
int a[2][2],b[2][2],c[2][2],i,j;
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
printf("Enter a[%d][%d]: ",i,j);
scanf("%d",&a[i][j]);
}
}
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
printf("Enter b[%d][%d]: ",i,j);
scanf("%d",&b[i][j]);
}
}
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
c[i][j]=a[i][j]-b[i][j];
}
}
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
printf("%d\t",c[i][j]);
}
printf("%\n");
}
}