11th Standard Syllabus & Materials
11th Standard
TN 11th English Supplementary - 3 - The First Patient (Play) Sample Question Papers Study Material - QB365 Set A
NEW11th Standard
TN 11th English Prose - 3 - Forgetting Sample Question Papers Study Material - QB365 Set A
NEW11th Standard
TN 11th English Prose - 2 - The Queen of Boxing Sample Question Papers Study Material - QB365 Set A
NEW11th Standard
TN 11th English Poem - 1 - Once Upon A Time Sample Question Papers Study Material - QB365 Set A
NEW11th Standard
TN 11th English Prose - 1 - The Portrait of a Lady Sample Question Papers Study Material - QB365 Set A
NEW11th Standard
TN 11th Computer Applications Tamil Computing Sample Question Papers Study Material - QB365 Set A

Published on: 21/03/2019
11th Public Exam March 2019 Important One Mark Question Paper
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 used to transfer control from one part to another part without any condition?
if
if-else
goto
if-else-if
2.
Which of the following is a selection statement?
for
while
do-while
none of these
3.
A group of statements enclosed by { } is called ________.
body statement
iterative statement
compound statement
continue statement
4.
How many kinds of statement used in C++?
3
2
6
only 1
5.
Which of the following statement is true or false?
(i) Test (Test &);//parameterized constructor declaration
(ii) Test:: Test (Test &T) {}; //copy constructor definition
(iii) Test T1 (10,20);//object created for parameterized constructor
(iv) Test:: Test( ) {}; //non-parameterisied constructor definition
i-false, ii-true, iii-true, iv-false
i-true, ii-true, iii-false, iv-true
i-false, ii-true, iii-true, iv-true
i-false ii-true, iii-false, iv-true
6.
Which of the following statement true or false?
(i) default constructor created in the absence of user defined constructor
(ii) default constructor cannot allocates memory for the object.
i-true, ii-false
i-false, ii-true
i-true, ii-true
i-false, ii-false
7.
Member function of a class can access all the members irrespective of their?
data types
constructor definition
access specifiers
operator used
8.
A loop that contains another loop inside its body:
Nested loop
Inner loop
Inline loop
Nesting of loop
9.
The multi way branch statement:
if
if...else
switch
for
10.
Instantiating object is done using _______.
inline function
outline function
constructor
initialize an object
11.
When a member function is defined outside a class, it behaves like________.
inline function
non-line function
procedural function
public function
12.
Overriding of the members are resolved by using_________.
.
;
: :
this
13.
The private members of base class can be accessed indirectly by the derived class by using base class public or protected________.
data members
access specifiers
member functions
visibility mode
14.
Which of the following class destructor expires first____________
(i) base class
(ii) derived class
only (i)
only (ii)
both (i) and (ii)
none of these
15.
"Phishing without a trop" called _________.
Hacking
Cracking
Pharming
Warehouse
16.
Which of the following statement is false?
(i) Duplicating and selling copyrighted programs is called software piracy
(ii) Downloading software illegally through network is called software piracy.
(iii) Unauthorized copying of software is called software piracy
only (i)
only (ii)
only (iii)
both (i) and (iii)
17.
When a class derived from a class which it self is a derived class is called ________.
Multiple
Multiple
hybrid
None of these
18.
Which of the following is used to access the pointer type members of the structure?
*
.
\(\rightarrow\)
;
19.
Which of the following is exist between the object name and the member name?
dot
colon
comma
semicolon
20.
Which of the following crime that tricking people into believing something is not true?
Spam
Spoofing
Scam
Harvesting
21.
Which of the following deals with procedures, practices and values?
piracy
programs
virus
computer ethics
22.
When accessing a structure member, the identifier to the left of the dot operator is the name of
structure variable
structure tag
structure member
structure function
23.
Which country provides all their services through the official website in Tamil?
Srilanka
America
Singapore
Malaysia
24.
Which of the following provide searching facilities in Tamil?
Bing
Safari
both a and b
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 statement is true or false?
(i) Strcat ( ) function appends copy of the character string pointed by the source to the memory location pointed by target.
(ii) strcpy () function appends copy of the character string pointed by the source to the end of the string pointed by the target.
(iii) strcmp ( ) and strlen ( ) function takes two arguments.
(iv) strcmp ( ) function compares the contents of strings lexicographically
(i) true, (ii) false, (iii) false, (iv) true
(i) false, (ii) true, (iii) false, (iv) false
(i) false, (ii) false, (iii) false, (iv) true
(i) false, (ii) false, (iii) false, (iv) false
28.
Which of the following is a scope resolution operator?
;
?
::
29.
The member function defined within the class behave like________functions.
inline
Non inline
Outline
Data
30.
Which of the following is also called automatic conversion?
Explicit
Type promotion
Type casting
Implicit
31.
Which of the following refers to the accessibility of a variable?
return
inline
void
scope
32.
The parameters used in the function definition are known as _______.
actual
formal
main
built-in
33.
The literal meaning for datatype is empty space ________.
int
empty
bool
void
34.
A class is derived from a class which is a derived class itself, then this is referred to as
multiple inheritance
multilevel inheritance
single inheritance
double inheritance
35.
The body of the function always enclosed with _______.
[]
{}
()
<>
36.
Which of the following statement is true
(i) Object oriented programs are much larger than other programs
(ii) Object oriented programs require a lot of work to create.
(iii) Object oriented programs are slower than other programs because of their size
both (i) and (ii)
both (ii) and (iii)
only (iii)
all of these
37.
Which of the following is the most important and powerful way of creating software?
Procedural Programming
Modular Programming
Object Oriented Programming
Encapsulation Programming
38.
Which of the following is an approach to programming?
Modules
Procedures
Paradigm
behaviour
39.
Which of the following statement is true or false?
(i) Function overloading reduces the number of comparison in a program
(ii) Function overloading makes the program execute faster
(iii) Function overloading helps by reducing the number of function names to be remembered
(iv) Scope resolution operator cannot be overloaded.
i-false, ii-true, iii-true, iv-false
i-true, ii-true, iii-true, iv-true
i-false, ii-false, iii-true, iv-true
i-true, ii-true, iii-false, iv-true
40.
Which of the following statement is true or false?
(i) Polymorphism means many shapes
(ii) Polymorphism is acheived through overloading
(iii) Overloading means a name having only one distinct meaning
(iv) Overload resolution means not selecting appropriate overloaded function
i-true, ii-true, iii-false, iv-false
i-true, ii-false, iii-true, iv-false
i-false, ii-false, iii-true, iv-true
i-false, ii-true, iii-true, iv-false
41.
Which of the following operator is by default overloaded by the compiler?
*
+
+=
==
42.
Match the following
| (i) int, char | (1) derived data type |
| (ii) class | (2) Built-in data type |
| (iii)Pointer | (3) User-defined data type |
| (iv) void | (4) fundamental data type |
| i) | ii) | iii) | iv) |
| 4 | 3 | 1 | 2 |
| i) | ii) | iii) | iv) |
| 4 | 3 | 2 | 1 |
| i) | ii) | iii) | iv) |
| 3 | 4 | 1 | 2 |
| i) | ii) | iii) | iv) |
| 1 | 2 | 4 | 3 |
43.
Insulation of the data from direct access by the program is called as
Data hiding
Encapsulation
Polymorphism
Abstraction
44.
Which of the following function is with a return value and without any argument?
x=display(int, int)
x=display()
y=display(float)
display(int)
45.
Which of the following header file defines the standard I/O predefined functions?
stdio.h
math.h
string.h
ctype.h
46.
Match the following
| (i) >> | (1) Assignment operator |
| (ii) > | (2) logical operator |
| (iii) = | (3) Arithmetic operator |
| (iv) % | (4) Bitwise operator |
| (iv) && | (5) Relation operator |
| i) | ii) | iii) | iv) | v) |
| 1 | 2 | 4 | 5 | 3 |
| i) | ii) | iii) | iv) | v) |
| 4 | 5 | 1 | 3 | 2 |
| i) | ii) | iii) | iv) | v) |
| 5 | 4 | 1 | 2 | 3 |
| i) | ii) | iii) | iv) | v) |
| 5 | 1 | 2 | 3 | 4 |
47.
The expansion of IDE is ________.
Important Development Environment
Integrated Development Environment
Integrated Digital Environment
Integrated Digital Extension
48.
Which operator denotes shift left bitwise?
>>
>>>
<<
<<<
49.
How many ways the numeric constants are classified?
2
3
4
6
50.
This can be used as alternate to endl command:
\t
\b
\0
\n
51.
What will be the result of following statement?
char ch= 'B';
cout << (int) ch;
B
b
65
66
52.
In which year E W Dijkstra was awarded ACM Turing Award?
1972
1974
1970
1971
53.
__________ is a diagrammatic notation for representing algorithms.
Pseudo code
Flowchart
Program
Languages
54.
_________statement is used to store a value in a variable.
Assignment
Sequential control flow
Alternative control flow
Iterative
55.
___________is commonly used to measure wave frequencies.
Hertz
internal memory
RAM
ALU
56.
____________is a magnetic disk on which you can store data.
compact disc
hard disk
DVD
flasg memory devices
57.
The components of CPU _________
control unit
ALU
Memory unit
all the above
58.
Which of the following is a recursive solver case?
Base case
Recursive case
loop case
Both a and b
59.
A loop invariant need not be true
at the start of the loop
at the start of each iteration
at the end of each iteration
at the start of the algorithm
60.
Which of the following interface transfers the uncompressed video and audio data to a computer monitor?
DVD
CD
HDMI
HDD
61.
How many ways to create the new folder?
2
3
1
4
62.
How many parent directory is allowed for a child directory?
2
Only One
More than 2
Less than 6
63.
Which of the statement is true?
(i) Window is a rectangular area in a dialog box.
(ii) Window does not includes a title bar.
(iii) Most of the window's area is not used to display the content.
(iv) Window cannot be overlaid
Only (iii) and (iv)
Only (i) and (ii)
Only (i) and (iii)
Only (iii) and (iv)
64.
Which of the following statement is not true?
(i) The basic working platform of windows is not a desktop.
(ii) The opening screen of windows is called desktop.
(iii) The appearance of the desktop cannot be changed.
(iv) The desktop consists of icons and task bar.
Only (i), (iv)
Only (i) and (iii)
Only (iii)
Only (ii) and (iv)
65.
The Right most bit on the binary digit carries the smallest weight is called..........
LSB
MSB
RMB
LMB
66.
Which device converts light waves into electrical waves?
Digital Camera
Light pen
Track ball
OCR
67.
In which memory contents can be erased using UV rays?
PROM
EPROM
ROM
EPROM
68.
1 KB = .............Bytes.
1000
1024
512
256
69.
How many parameters can be considered to know the magnitude of the number?
2
4
3
5
70.
The organized file structure is referred to ______
Multilevel directory system
Hierarchical directory system
Multitasking directory system
(a) or (b)
71.
Which of the following window element help to resize the windows?
Corners
Borders
(a) and (b)
Scroll bar
72.
4 bits =................
Bit
Byte
Nibble
Word
73.
Data means..............
a set of values
a set of information
a set of records
a set of files
74.
How the information entered in a computer?
Knowledge
data
ASCII Value
BCD
75.
The first digital computer name was _______.
EDVAC
UNIVACI
ENIAC
IBM 1620
76.
Which serves as a contract between the designer and users of the algorithm?
Abstraction
Specification
Composition
Decomposition
77.
Match the following
| (i) | Expert System | 1 | Second Generation |
| (ii) | Batch Processing | 2 | Fourth Generation |
| (iii) | NLP | 3 | Six Generation |
| (iv) | Introduction of Laptop | 4 | Fifth Generation |
| i) | ii) | iii) | iv) |
| 4 | 1 | 3 | 2 |
| i) | ii) | iii) | iv) |
| 1 | 3 | 2 | 4 |
| i) | ii) | iii) | iv) |
| 3 | 4 | 1 | 2 |
| i) | ii) | iii) | iv) |
| 4 | 3 | 1 | 2 |
78.
Which of the following is not an algorithm design technique?
Specification
Abstraction
Control flow
Composition
79.
Which OS is the most popular Linux based open source software?
Apple iOS
Google Android
Windows
Blackberry
80.
Which management is the process of managing the operations implementation, maintenance of physical and virtual devices?
File
Process
Memory
Device
81.
In which operating system the user can exchange the data which each other in real time?
Distributed
Real time
Time sharing
Multi-user
82.
If C1 is false and C2 is true, the compound statement
1 if CI
2 SI
3 else
4 if C2
5 S2
6 else
7 S3
executes
S1
S2
S3
none
83.
Which of the following is not included in computer organization?
I/O devices
Software
CPU
Main memory
84.
How many cases executed atleast by case analysis statement?
2
1
3
4
85.
Which of the following describes a test of the statement?
Order
Condition
Statement
Instruction
86.
Omitting details inessential to the task and representing only the essential features of the task is known as
specification
abstraction
composition
decomposition
87.
88.
What is the smallest size of data represented in a CD?
blocks
sectors
pits
tracks
89.
Which is the default application for spreadsheets in Ubuntu? This is available in the software launcher?
Libre Office Writer
Libre Office Calc
Libre Office Impress
Libre Office Spreadsheet
90.
Identify the default email client in Ubuntu?
Thunderbird
Firefox
Internet Explorer
Chrome
91.
From the options given below, choose the operations managed by the operating system.
Memory
Processes
Disks and I/O devices
all of the above
92.
File Management manages
Files
Folders
Directory systems
All the Above
93.
94.
Which of the following is a CISC processor?
Intel P6
AMD K6
Pentium III
Pentium IV
95.
How many bits constitute a word?
8
16
32
determined by the processor used.
96.
For 11012 the equivalent Hexadecimal equivalent is?
F
E
D
B
97.
Expansion for ASCII
American School Code for Information Interchange
American Standard Code for Information Interchange
All Standard Code for Information Interchange
American Society Code for Information Interchange
98.
How many bytes does 1 KiloByte contain?
1000
8
4
1024
99.
Which generation of computer used IC's?
First
Second
Third
Fourth
100.
First generation computers used
Vacuum tubes
Transistors
Integrated circuits
Microprocessors
1.
(c)
goto
2.
(d)
none of these
3.
(c)
compound statement
4.
(b)
2
5.
(c)
i-false, ii-true, iii-true, iv-true
6.
(a)
i-true, ii-false
7.
(c)
access specifiers
8.
(a)
Nested loop
9.
(c)
switch
10.
(c)
constructor
11.
(b)
non-line function
12.
(c)
: :
13.
(c)
member functions
14.
(b)
only (ii)
15.
(c)
Pharming
16.
(a)
only (i)
17.
(d)
None of these
18.
(c)
\(\rightarrow\)
19.
(a)
dot
20.
(b)
Spoofing
21.
(d)
computer ethics
22.
(a)
structure variable
23.
(a)
Srilanka
24.
(d)
both a and b
25.
(a)
Tamil
26.
(c)
4
27.
(c)
(i) false, (ii) false, (iii) false, (iv) true
28.
(c)
::
29.
(a)
inline
30.
(d)
Implicit
31.
(d)
scope
32.
(b)
formal
33.
(d)
void
34.
(b)
multilevel inheritance
35.
(b)
{}
36.
(d)
all of these
37.
(c)
Object Oriented Programming
38.
(c)
Paradigm
39.
(b)
i-true, ii-true, iii-true, iv-true
40.
(a)
i-true, ii-true, iii-false, iv-false
41.
(d)
==
42.
(a)
| i) | ii) | iii) | iv) |
| 4 | 3 | 1 | 2 |
43.
(a)
Data hiding
44.
(b)
x=display()
45.
(a)
stdio.h
46.
(b)
| i) | ii) | iii) | iv) | v) |
| 4 | 5 | 1 | 3 | 2 |
47.
(b)
Integrated Development Environment
48.
(c)
<<
49.
(a)
2
50.
(d)
\n
51.
(d)
66
52.
(a)
1972
53.
(b)
Flowchart
54.
(a)
Assignment
55.
(a)
Hertz
56.
(b)
hard disk
57.
(d)
all the above
58.
(d)
Both a and b
59.
(d)
at the start of the algorithm
60.
(d)
HDD
61.
(a)
2
62.
(b)
Only One
63.
(a)
Only (iii) and (iv)
64.
(b)
Only (i) and (iii)
65.
(a)
LSB
66.
(a)
Digital Camera
67.
(d)
EPROM
68.
(b)
1024
69.
(c)
3
70.
(b)
Hierarchical directory system
71.
(c)
(a) and (b)
72.
(a)
Bit
73.
(a)
a set of values
74.
(b)
data
75.
(c)
ENIAC
76.
(b)
Specification
77.
(a)
| i) | ii) | iii) | iv) |
| 4 | 1 | 3 | 2 |
78.
(c)
Control flow
79.
(b)
Google Android
80.
(d)
Device
81.
(a)
Distributed
82.
(b)
S2
83.
(b)
Software
84.
(b)
1
85.
(b)
Condition
86.
(b)
abstraction
87.
(d)
88.
(c)
pits
89.
(b)
Libre Office Calc
90.
(a)
Thunderbird
91.
(d)
all of the above
92.
(d)
All the Above
93.
(c)
94.
(c)
Pentium III
95.
(d)
determined by the processor used.
96.
(c)
D
97.
(b)
American Standard Code for Information Interchange
98.
(d)
1024
99.
(c)
Third
100.
(a)
Vacuum tubes
11th Standard Syllabus & Materials
11th Standard
TN 11th Computer Applications Computer Ethics and Cyber Security Sample Question Papers Study Material - QB365 Set A
NEW11th Standard
TN 11th Computer Applications JavaScript Functions Sample Question Papers Study Material - QB365 Set A
NEW11th Standard
TN 11th Computer Applications Control Structure in JavaScript Sample Question Papers Study Material - QB365 Set A
NEW11th Standard
TN 11th Computer Applications Introduction to JavaScript Sample Question Papers 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