Time: 3hours Maximum Marks: 70: Sample Paper - III Subject - Computer Science
Time: 3hours Maximum Marks: 70: Sample Paper - III Subject - Computer Science
Time: 3hours Maximum Marks: 70: Sample Paper - III Subject - Computer Science
Time: 3Hours
Maximum Marks: 70
Note. (i) All questions are compulsory.
Q.No.1
a. Define Analog an Digital Computer
b. why analytical engine often called the pioneer computer.
c. what are the different types of printer. Explain in brief
d. What is the difference between copying and moving files and folders
e. What functions are performed by an operating system as a resource manager
Q.No.2
a. Define the term ASCII and ISCII.
b. What are the different Data representation schemes
c. Explain different types of RAM
d. What do you mean by ports. Explain in brief all types of ports 4
e. Why primary memory is termed as ‘destructive write’ memory but ‘non-destructive read’
memory
f. Explain the different features of OOP. 3
Q.No.3
a) Find the output of the following program. 3
#include<iostream.h>
void Withdef(int HisNum=30)
{
for(int I=20;I<=HisNum;I+=5)
cout<<I<<”,”;
cout<<endl;
}
void Control(int &MyNum)
{
MyNum+=10;
Withdef(MyNum);
}
void main()
{
int YourNum=20;
Control(YourNum);
Withdef();
cout<<”Number=”<<YourNum<<endl;
}
b. void main()
{
char *NAME=”a ProFiLe!”;
for(int x=0;x<strlen(NAME);x++)
if(islower(NAME[x]))
NAME[x]=toupper(NAME[x]);
else
127
if(isupper(NAME[x]))
if(x%2!=0)
NAME[x]=tolower(NAME[x-1]);
else
NAME[x]--;
cout<<NAME<<endl;
}
128