11th Standard Syllabus & Materials
11th Standard
TN 11th Tamil இயற்கை வேளாண்மை,சுற்றுச்சூழல் -செய்யுள் - மனோன்மணீயம் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil என்னுயிர் என்பேன் -துணைப்பாடம் - இசைத்தமிழர் இருவர் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மொழி கலை -செய்யுள் - ஒவ்வொரு புல்லையும் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - இலக்கணம் - பகுபத உறுப்புகள் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - துணைப்பாடம் - வாடிவாசல் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - செய்யுள் - குறுந்தொகை Important Questions And Answers Study Material - QB365 Set A

Published on: 30/10/2019
Download Tamil Nadu 11th Standard Computer Science question papers, model tests, one-mark questions, important questions, and public exam papers in PDF format. Free study materials and answer keys for TN State Board students.
Questions + Answers key
Take MCQ Computer Science Test

1.
Which of the following is the exit control loop?
for
while
do ... while
if ... else
2.
Which of the following is the scope operator?
>
&
%
::
3.
This can be used as alternate to endl command:
\t
\b
\0
\n
4.
Which of the following data types is not a fundamental type?
signed
int
float
char
5.
Which of the following is a valid string literal?
'A'
'Welcome'
1232
"1232"
6.
Who developed C++?
Charles Babbage
Bjarne Stroustrup
Bill Gates
Sundar Pichai
7.
A + A = ?
A
O
I
A
8.
How many times the loop is iterated?
i:= 0
while i \(\neq \)5
i := i+ 1
4
5
6
0
9.
Stating the input property and the input-output relation a problem is known
specification
statement
algorithm
definition
10.
Which of the following OS is not based on Linux?
Ubuntu
Redhat
CentOs
BSD
11.
Android is a ________
Mobile Operating system
Open Source
Developed by Google
All the above
12.
Which of the following OS is a Commercially licensed Operating system?
Windows
UBUNTU
FEDORA
REDHAT
13.
Which of the following is a CISC processor?
Intel P6
AMD K6
Pentium III
Pentium IV
14.
Which refers to the number of bits processed by a computer's CPU?
Byte
Nibble
Word length
Bit
15.
16.
Consider the following C++ statement. Are they equivalent?
char ch = 67;
char ch = ‘C’;
17.
Define a loop invariant.
18.
Draw the truth table for XOR gate.
19.
What is multi-processing?
20.
21.
22.
Write the syntax and purpose of switch statement.
23.
If C is false in line 2, trace the control flow in this algorithm.
1 S1
2 -- C is false
3 if C
4 S2
5 else
6 S3
7 S4
24.
Write the De Morgan's law.
25.
26.
What are the advantages and disadvantages of Time-sharing features?
27.
Differentiate optical and Laser mouse.
28.
Write the output of the following
#include < iostream >
#include < stdio.h >
using namespace std;
class P
{ public:
P ( )
{ cout<< "\nConstructor of class P "; }
~ P ( )
{ cout<< "\nDestructor of class P "; }
};
class Q
{ public:
Q( )
{ cout<< "\nConstructor of class Q "; }
~ Q( )
{ cout<< "\nDestructor of class Q "; }
};
class R
{ P obj1, obj2;
Q obj3;
public:
R ( )
{ cout<< "\nConstructor of class R ";}
~ R ( )
{ cout<< "\nDestructor of class R ";}
};
int main ( )
{
Ro R;
Q oq;
P op;
return 0;
}
29.
30.
Write the output of the following c++ program
#include<iostream>
#include<stdio>
#include <string>
#include<conio>
using namespace std;
struct books {
char name[20], author[20];
} a[2];
int main()
{ cout<< "Details of Book No " << 1 << "\n";
cout<< "------------------------\n";
cout<< "Book Name :"<<strcpy(a[0].name,"Programming ")<<endl;
cout<< "Book Author :"<<strcpy(a[0].author,"Dromy")<<endl;
cout<< "\nDetails of Book No " << 2 << "\n";
cout<< "------------------------\n";
cout<< "Book Name :"<<strcpy(a[1].name,"C++programming" )<<endl;
cout<< "Book Author :"<<strcpy(a[1].author,"BjarneStroustrup ")<<endl;
cout<<"\n\n";
cout<< "================================================\n";
cout<< " S.No\t| Book Name\t|author\n";
cout<< "====================================================";
for (int i = 0; i < 2; i++) {
cout<< "\n " << i + 1 << "\t|" << a[i].name << "\t| " << a[i].author;
}
cout<< "\n=================================================";
return 0;
}
31.
Assume a=15, b=20; What will be the result of the following operations?
(a) a&b
(b) a|b
(c) a^b
(d) a>>3
(d) (~b).
32.
Subtract 11010112 - 1110102
1.
(c)
do ... while
2.
(d)
::
3.
(d)
\n
4.
(a)
signed
5.
(d)
"1232"
6.
(b)
Bjarne Stroustrup
7.
(a)
A
8.
(b)
5
9.
(a)
specification
10.
(d)
BSD
11.
(a)
Mobile Operating system
12.
(a)
Windows
13.
(c)
Pentium III
14.
(c)
Word length
15.
(c)
16.
Both the statements are equivalent as they declare 'ch' to be char and initialize it with the value of 67. Since this is the ASCII code for 'C', the character constant also can he used to initialize 'ch' to 67.
17.
In iteration, the loop body is repeatedly executed as long as the loop condition is true. Each time the loop body is executed, the variables are updated.
However, there is also a property of the variables which remains unchanged by the execution of the loop body. This unchanging property is called the loop invariant.
18.
The truth table for XOR gate is
| Input | Output | |
| A | B | C |
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
19.
Multiprocessing is one of the features of operating system. It has two or more processors for a single running process. Each processor works on different parts of the same task or two or more different tasks.
20.
21.
22.
The switch statement is a multi-way branch statement. It provides an easy way to dispatch execution to different parts of code based on the value of the expression. The switch statement replaces multiple if-else sequence.
The syntax of the switch statement is;
switch(expression)
{
case constant 1:
statement(s);
break;
case constant 2:
statement(s);
break;
.
.
.
.
default:
statement(s);
}
23.
S1; S2; S4
24.
De Morgan's
\(\bar { A+B } =\bar { A } .\bar { B } \)
\(\left( \bar { A.B } \right) =\bar { A } +\bar { B } \)
25.
26.
Advantages and disadvantages of Time Sharing Option (TSO)
| Time-Sharing Operating Systems | |
| Advantages | Disadvantages |
| Each task and each user get its time. | Problem in Reliability |
| Systems have to give time to these application individual tasks and other applications also, so that all system behave correctly. | It consumes many resources so it need special operating systems. |
| Reduces the CPU ideal time | Need High specification hardware |
27.
| Optical Mouse | Laser Mouse |
| It is less sensitive towards the surface | Highly sensitive |
| Tracking power is less | Tracking power is more |
| Old technology | Latest technology |
| This uses the light source instead of ball to judge the motion of the pointer. | This uses Laser light |
| Optical mouse has 3 buttons | No. of buttons will vary from 3 to many |
28.
Constructor of class P
Constructor of class Q
Constructor of class R
Destructor of class R
Destructor of class Q
Destructor of class P
29.
30.
Output
Details of Book No. 1
Book name: Programming
Book author: Dromy
Details of Book No. 2
Book Name: C++ Programming
Book Author: Bjarne Stroustrup
1|programming| Dromy
2|C++ Programming | Bjarne Stroustrup
31.
(a) a&b
| 10 | 1010 |
| 11 | 1111 |
| a&b | 1010 |
a&b =1010&1510=1010=1010
(b) a|b
| 10 | 1 | 0 | 1 | 0 |
| 15 | 1 | 1 | 1 | 1 |
| 10 | 15 | 1 | 1 | 1 | 1 |
a|b =10|15= 11112 =1510
(c) a^b
| 10 | 1 | 0 | 1 | 0 |
| 15 | 1 | 1 | 1 | 1 |
| 10 ^ 15 | 0 | 1 | 0 | 1 |
a^b =10^15= 01012 =1510
(d) a>>3
a=10
10/23=10/8=1
10>>3=110
(e) (~b)
| b | 1 | 1 | 1 | 1 |
| ~b | 0 | 0 | 0 | 0 |
(~b)=00002=010
32.
11010112 - 1110102
1101011
+111010
_______
0110001
_______
11010112 - 1110102 = 01100012
11th Standard Syllabus & Materials
11th Standard
TN 11th Tamil பீடு பெற நில் - செய்யுள் - காவடிச்சிந்து Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - உரைநடை - மலை இடப்பெயர்கள் : ஓர் ஆய்வு Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மாமழை போற்றுதும் - துணைப்பாடம் - யானை டாக்டர் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மாமழை போற்றுதும் - செய்யுள் - ஐங்குறுநூறு Important Questions And Answers Study Material - QB365 Set A
Tamilnadu Stateboard 11th Standard Subjects

Maths

Commerce

Economics

Biology

Business Maths and Statistics

Accountancy

Computer Science

Physics

Chemistry

Maths

Biology

Economics

Physics

Chemistry

History

Business Maths and Statistics

Computer Science

Accountancy

Computer Applications

History

Computer Technology

Commerce

Computer Applications

Computer Technology

Tamil

English

French
Tamilnadu Stateboard Standards