St. Britto Hr. Sec. School - Madurai
11th Computer Science Model Exam-Aug 2020
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Write a note on Decimal Number system
-
Write notes on fifth generation computers.
-
Write down the steps to be taken to construct a loop.
-
What is the use of repeating the same action again and again?
-
What is MSB, LSB and Binary point? Give example.
-
What is the desired relation between the inputs A and B, and the output q and r?
-
Define Keyer?
-
Which function is used to convert the given character into its uppercase? Give example.
-
Differentiate Spyware and Ransomware.
-
What should we know while designing algorithm.
-
Write the output of the following program
#include< iostream >
using namespace std;
class A
{
protected:
int x;
public:
void show()
{
cout<<"x = "<}
A()
{
cout<}
~A( )
{
cout<}
};
class B : public A
{
{
protected:
int y;
public:
B(int x, int y)
{
this->x = x; //this -> is used to denote the objects datamember
this->y = y; //this -> is used to denote the objects datamember
}
B( )
{
cout<}
~B( )
{
cout<}
void show( )
{
cout<<"x = "<cout<<"y = "< }
};
int main( )
{
A objA;
B objB(30, 20);
objB.show( );
return 0;
} -
Write the significant features of Ubuntu OS.
-
Explain various methods of creating Files and Folders.
-
-
What is Recursion? Write a program to find GCD using recursion.
-
Explain the methods followed while copying files and folders to removable disk.
-
-
Explain in detail the different types of Mouse.
-
Explain main memory and its types.
-
Write the syntax of if nested inside both if part and else part