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: 21/03/2019
11th Public Exam March 2019 Important Creative One Mark Test
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 statement checks for equality as well as for logical expression?
for
continue
if-else
switch
2.
Which of the following is a selection statement?
for
while
do-while
none of these
3.
Which of the following statement is false?
(i) Conditional operator also called Ternary operator
(ii) Conditional operator is an alternative for if-else-if ladder
(iii) Ternary operator takes four arguments
(iv) The symbols used in ternary operator is? :
only(i)
only(ii)
both (ii) and (iii)
both (ii) and (iv)
4.
Which of the following expression evaluates true or false?
Arithmetic expression
Unary expression
Relational expression
Assignment Arithmetic expression
5.
Which of the following destroys the object constructed by the constructor?
destroyer
constructor
destructor
Methods
6.
Which of the following constructor executed when inner class contains the outer class object?
inner class
outer class
Explicit class
none of these
7.
Which of the following is the exit control loop?
for
while
do ... while
if ... else
8.
How many types of iteration statements?
2
3
4
5
9.
Which of the following are called instance of class?
objects
members
Attributes
properties
10.
Which of the following class members cannot be accessed from outside?
private
protected
public
both a and b
11.
Which of the following is needed to represent real world entities?
objects
Modules
classes
none of these
12.
When classes are inherited with all the visibility modes but derived class cannot access the________.
private members
protected members
public members
both a and b
13.
Which members of the base class will be acquired by the derived class is known by ________
inheritance
scope resolution operator
derived class members
visibility modes
14.
The size of the class without any declaration will occupy________.
0 byte
1 byte
4 bytes
8 bytes
15.
In which type of inheritance the derived class acquired all the base classes properties even though the base clause have no relationship?
Multilevel inheritance
Multiple inheritance
Hybrid inheritance
Hierarchical inheritance
16.
Expansion of IDS is _________.
Identification Detection Systems
Intrusion Detection Software
Intrusion Digital Systems
Intrusion Detection Systems
17.
Which of the following increases the time consumption while searching?
Structures
Arrays
functions
built-in functions
18.
Distribute unwanted email to a large number of internet users _________.
Scam
inbox
BCC
Spam
19.
Which of the following crime that tricking people into believing something is not true?
Spam
Spoofing
Scam
Harvesting
20.
If no datatype is explicitly mentioned, the return datatype is ________.
int
float
char
long double
21.
Literally, the meaning of Array is _________.
only one
only five
only hundred
more than one
22.
Which of the following deals with procedures, practices and values?
piracy
programs
virus
computer ethics
23.
The first version of Unicode introduced in the year ________.
1990
1998
1991
1981
24.
Which of the following are portal or website of books collection?
E-Papers
E-Commere
E-languages
E-libraries
25.
In India, Which is the most widely language in Internet?
Tamil
Hindi
Kannada
Malayalam
26.
cin >>n[3]; To which element does this statement accepts the value?
2
3
4
5
27.
Which of the following is the collection of variables of the same type that an referenced by a common name?
int
float
Array
class
28.
Which of the following statements about member functions are True or False?
(i) A member function can call another member function directly with using the dot operator.
(ii) Member function can access the private data of the class.
i-True, ii-True
i-False, ii-True
i-Trrue, ii-False
i-False, ii-False
29.
A local variable always defined with in _______.
{}
()
[]
<>
30.
Which of the following statement is used to terminate the void function?
(i) return statements without parameter
(ii) return statements with parameter
Only (i)
Only (ii)
Only (i) or (ii)
None of these
31.
Which of the following is not true?
(i) Inline function executes faster
(ii) Inline function does not requires more memery space
(iii) Inline function reduce the complesity of using STACKS
(iv) Two methods are in C++ to call the function.
both (i) and (ii)
both (ii) and (iii)
only (iii)
only (iv)
32.
The literal meaning for datatype is empty space ________.
int
empty
bool
void
33.
The type of inheritance that reflects the transitive nature is
Single Inheritance
Multiple Inheritance
Multilevel Inheritance
Hybrid Inheritance
34.
Which of the following is not a pow() function argument?
(i) base
(ii) exponent
(iii) character
Only (i)
Only (ii)
Only (iii)
both (ii) and (iii)
35.
How many types of integer literals in C++?
3
5
7
6
36.
Which of the following is not an advantage of OOP?
Re-usability
Easy maintenance
Security
Speed
37.
The ability of a message or function to be displayed in more than one form is called _______.
Data hiding
Polymorphism
Data abstraction
Modularity
38.
In C++, any non zero value considered as?
true
false
0
-1
39.
Which of the following is hidden under the modules?
behaviour
object
instruction
data
40.
Which of the following provides flexibility of creating multiple type of objects for a class?
function overloading
operator overloading
constructor overloading
object overloading
41.
Which of the following can have more than one constructor with different signature?
Methods
class
object
Attribute
42.
#include< iostream >
using namespace std;
class Point {
private:
int x, y;
public:
point(int x1,int y1)
{
x=x1;y=y1;
}
void operator+(Point&pt3);
void showO {cout << "x=" << x << " ,y=" << y;}
};
void Point::operator+(point &pt3)
{
x + =pt3.x;
y+=pt3.y;
}
int main ()
{
point ptl(3,2),pt2(5,4);
pt1+pt2;
pt1.show ();
return 0;
}
Which of the following statement invoke operator overloading?
pt1+pt2
Pointpt1(3,2),pt2(5,4)
pt1.showt);
return 0;
43.
Which C++ is written in Delphi?
Eclipse
Net Beans
Visual c++
Dev c++
44.
Which of the following supports the transitive nature of data?
Inheritance
Encapsulation
Polymorphism
Abstraction
45.
Which of the following is the scope operator?
>
&
%
::
46.
Which function is used to check whether a character is alphanumeric or not:
isalpha ( )
isdigit ()
isalnum ()
islower ()
47.
If a = 4, b = 5, the value a & b is ________.
910
510
010
410
48.
boolean y = (a < b) & & (b < c); what is the value of y if a = 5, b = 6, c = 7?
1
0
false
no
49.
How many byte(s) occupied by a character constant?
8
4
2
1
50.
What will be the result of following statement?
char ch= 'B';
cout << (int) ch;
B
b
65
66
51.
How many categories of data types are available in C++?
5
4
3
2
52.
Recursion must have at least ____________ base case.
one
two
three
four
53.
The triangle is right-angled, if_________ .
C =a-b
c2=a2+b2
c2=(a+b)2
c2=a2-b2
54.
Each part of algorithm is known as _________.
input
function
variable
program
55.
How many cases are there a recursive solver has_______.
2
3
4
many
56.
If m x a + n x b is an invariant for the assignment a, b: = a + 8, b + 7, the values of m and n are
m = 8, n = 7
m = 7, n = -8
m = 7, n = 8
m = 8, n = -7
57.
A logic gate is a building block of a _____.
digital circuit
digital computer
digital memory
digital voltage
58.
Match the following.
| (i) To connect speakers and head phone | (1) Parallel Port |
| (ii) To connect the printers | (2) VGA Connector |
| (iii) To connect HDD | (3) USB Port |
| (iv) To connect Mobile Phones | (4) Audio Plugs |
| (v) To connect LCD Projector | (5) SCSI Port |
| i) | ii) | iii) | iv) | v) |
| 5 | 4 | 1 | 3 | 2 |
| i) | ii) | iii) | iv) | v) |
| 1 | 3 | 2 | 4 | 5 |
| i) | ii) | iii) | iv) | v) |
| 4 | 1 | 5 | 2 | 3 |
| i) | ii) | iii) | iv) | v) |
| 4 | 1 | 5 | 3 | 2 |
59.
Which of the following statement is true?
(i) RAM is not a main memory.
(ii) RAM is in the form of ICs.
(iii) RAM stores the information temporarily.
(iv) RAM cannot be accessed by a collection of bits.
Only (i)
Only (ii) and (iii)
Only (iv)
Only (i) and (iv)
60.
Which of the following is the newest concept in digital coding?
ASCII
Unicode
EBCDIC
Byte Code
61.
Which of the following is located at the top of the screen?
Task bar
Scroll bar
Tool bar
Menu bar
62.
Which of the following linux server distribution is shareware?
CentOS
Red Hat
Suse
All of these
63.
Repeated division method is also known as.........
Expansion method
Divide by 2 method
Double dabble method
None of these
64.
How many procedures are there to convert from decimal to binary?
2
4
8
3
65.
The color of double-layered DVD is..............
Silver
Bronze
Blue
Gold
66.
Which program or software is available free of charge?
Open source
Closed source
Shareware
none of these
67.
How many methods are there of transferring files to or from a removable disk?
1
2
3
4
68.
Which of the following mouse type used Green led?
Mechanical
Optical
Laser
None of these
69.
Expansion of MSB is......
Most Sign Bit
Most Significant Bit
Medium Signal Bit
Most Significant Byte
70.
How many ways are there to create a new folder?
4
3
2
many
71.
The Main memory also called as ...........
ROM
RAM
Cache
EPROM
72.
Which of the following memory have slower access time?
Blu-ray
Primary memory
Hard disk
Cache
73.
Who was the inventor of the electronic digital computer?
John Vincent Atanasoff
J. Presper Eckert
John Mauchly
Charles babbage
74.
Expansion of CCD is ____
Coupled Changed Device
Changed Coupled Device
Changed Couple Device
Camera changed Divider
75.
How many types of operations carried out of instruction set?
5
4
3
2
76.
How many techniques are there to optimize the CPU time?
4
5
2
3
77.
Interactive operating system is a____
GUI
CUI
UI
OS
78.
The graphical representation of Windows elements are called ______
desktop
icons
task box
folders
79.
Which are named boxes for storing data?
Data
process
functions
variables
80.
How many basic building blocks are there to construct algorithms?
1
2
4
3
81.
Robotics develop in_____ generation.
Third
Fourth
Fifth
Sixth
82.
Which operating system allows many users to share the computer resources simultaneously?
Time sharing
Multi-Processor
Multiuser
Multi resources
83.
NAND is called as ......Gate
Fundamental Gate
Derived Gate
Logical Gate
Universal gate
84.
NOR is a combination of ?
NOT(OR)
NOT(AND)
NOT(NOT)
NOT(NOR)
85.
A + A = ?
A
O
I
A
86.
Which of the following properties is true after the assignment (at line 3)?
1 --i, j = 0, 0
2 i, j := i+1, j-1
3 -- ?
i + j > 0
i+j < 0
i+j=0
i = j
87.
Which of the following is an iterative statement?
If CS
While CS
--P S1 --Q
both (a) and (b)
88.
Which of the following is (are) a control flow statements?
Sequential
Alternative
Iterative
All of these
89.
90.
91.
What is the meaning of "Hibernate" in Windows XP/Windows 7?
Restart the Computer in safe mode
Restart the Computer in hibernate mode
Shutdown the Computer terminating all the running applications
Shutdown the Computer without closing the running applications
92.
Under which of the following OS, the option Shift + Delete - permanently deletes a file or folder?
Windows 7
MS-DOS
Linux
Android OS
93.
From the options given below, choose the operations managed by the operating system.
Memory
Processes
Disks and I/O devices
all of the above
94.
Which of the following OS is a Commercially licensed Operating system?
Windows
UBUNTU
FEDORA
REDHAT
95.
Identify the usage of Operating Systems
Easy interaction between the human and computer
Controlling Input & Output Devices
Managing use of main memory
All the above
96.
How many memory locations are identified by a processor with 8 bits address bus at a time?
28
1024
256
8000
97.
Which of the following device identifies the location when address is placed in the memory address register?
locator
encoder
decoder
multiplexed
98.
Which of the following is not the part of a microprocessor unit?
ALU
Control unit
Cache memory
register
99.
Which generation of computer used IC's?
First
Second
Third
Fourth
100.
Expand POST
Post on self Test
Power on Software Test
Power on Self Test
Power on Self Text
1.
(c)
if-else
2.
(d)
none of these
3.
(c)
both (ii) and (iii)
4.
(c)
Relational expression
5.
(c)
destructor
6.
(b)
outer class
7.
(c)
do ... while
8.
(b)
3
9.
(a)
objects
10.
(d)
both a and b
11.
(c)
classes
12.
(a)
private members
13.
(d)
visibility modes
14.
(b)
1 byte
15.
(b)
Multiple inheritance
16.
(d)
Intrusion Detection Systems
17.
(b)
Arrays
18.
(d)
Spam
19.
(b)
Spoofing
20.
(a)
int
21.
(d)
more than one
22.
(d)
computer ethics
23.
(c)
1991
24.
(d)
E-libraries
25.
(a)
Tamil
26.
(c)
4
27.
(c)
Array
28.
(b)
i-False, ii-True
29.
(a)
{}
30.
(b)
Only (ii)
31.
(c)
only (iii)
32.
(d)
void
33.
(c)
Multilevel Inheritance
34.
(c)
Only (iii)
35.
(a)
3
36.
(d)
Speed
37.
(b)
Polymorphism
38.
(a)
true
39.
(d)
data
40.
(c)
constructor overloading
41.
(b)
class
42.
(a)
pt1+pt2
43.
(d)
Dev c++
44.
(a)
Inheritance
45.
(d)
::
46.
(a)
isalpha ( )
47.
(d)
410
48.
(a)
1
49.
(d)
1
50.
(d)
66
51.
(c)
3
52.
(a)
one
53.
(b)
c2=a2+b2
54.
(b)
function
55.
(a)
2
56.
(b)
m = 7, n = -8
57.
(a)
digital circuit
58.
(d)
| i) | ii) | iii) | iv) | v) |
| 4 | 1 | 5 | 3 | 2 |
59.
(b)
Only (ii) and (iii)
60.
(b)
Unicode
61.
(d)
Menu bar
62.
(b)
Red Hat
63.
(a)
Expansion method
64.
(a)
2
65.
(d)
Gold
66.
(a)
Open source
67.
(d)
4
68.
(b)
Optical
69.
(b)
Most Significant Bit
70.
(c)
2
71.
(b)
RAM
72.
(d)
Cache
73.
(a)
John Vincent Atanasoff
74.
(b)
Changed Coupled Device
75.
(a)
5
76.
(c)
2
77.
(a)
GUI
78.
(b)
icons
79.
(d)
variables
80.
(c)
4
81.
(d)
Sixth
82.
(a)
Time sharing
83.
(b)
Derived Gate
84.
(a)
NOT(OR)
85.
(a)
A
86.
(c)
i+j=0
87.
(b)
While CS
88.
(d)
All of these
89.
(b)
90.
(d)
91.
(d)
Shutdown the Computer without closing the running applications
92.
(a)
Windows 7
93.
(d)
all of the above
94.
(a)
Windows
95.
(d)
All the above
96.
(c)
256
97.
(c)
decoder
98.
(c)
Cache memory
99.
(c)
Third
100.
(d)
Power on Self Text
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