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: 13/03/2019
Plus One Public Exam March 2019 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 is true?
expression 1? expression 2 : expression 3 ;
expression 1: expression 2 ? expression 3 ;
expression 1; expression 2 : expression 3 ?
expression I? expression 2 ; expression 3 ?
2.
Which of the following is an alternative for 'if else statement'?
Relational operator
Logical operator
Unary operator
Conditional operator
3.
Which of the statement(s) called as control flow?
branching
iteration
jumping
function calls
all of these
4.
The null or empty statement is a statement containing only a _________.
semicolon (;)
colon (:)
comma ,
bracess { }
5.
How many times the following loop with execute? for (int i=0; i<10; i++).
0
10
9
11
6.
In C++, the group of statements should be enclosed within:
{ }
[ ]
( )
< >
7.
In which of the following method the function works directly on the original object?
pass by method
pass by reference
pass by argument
pass by value
8.
Which of the following function is not advisable when a member function having many statements?
Normal
in-line
outline
non-inline
9.
Which of the following represents the properties of a class?
members functions
data members
access specifiers
procedures
10.
By default, structure members are create as ________.
protected
private
public
none of these
11.
Who developed C++?
Bjurne Strustrup
James Goushing
Dennis Retchie
Ken Thomson
12.
The derived class member, functions have the same of the base class member functions is called ________.
overloading
data hiding
data binding
over riding
13.
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
14.
In which type of inheritance the base class do not have any relationship between them?
Multilevel inheritance
Hierarchical inheritance
Multiple inheritance
Hybrid inheritance
15.
"Phishing without a trop" called _________.
Hacking
Cracking
Pharming
Warehouse
16.
Who breaks into someone else's computer system called _________.
Hacker
Cracker
Breaker
Cipher
17.
The first argument of get() function is _________.
size of an array
name of an array
index number
number of elements
18.
Which of the following is a crime which involves computer and network?
Phishing
Pharming
Hacking
Piracy
All of these
19.
If array is not initialized, all the array elements contain _________.
initial value
garbage value
final value
no value
20.
A variable declared above all blocks and functions and main ( ) function has the scope _______.
file
function
class
local
21.
The process of converting cipher text to plain text is called
Encryption
Decryption
key
proxy server
22.
Which of the following cannot be a structure member?
Another structure
Function
Array
variable of double datatype
23.
24.
In white OS, Sellinam Tamil keyboard layout works?
windows
linux
Android
iOS
25.
Which of the following search engine gives Tamil virtual keyboard?
Bing
Yahoo
Safari
26.
Which of the following is the collection of variables of the same type that an referenced by a common name?
int
float
Array
class
27.
Which of the following is not a return type of pow() function?
integer
double
float
long double
28.
Which of the following feature of oops acquires the properties of the existing class?
polymorphism
Encapsulation
Inheritance
Data abstraction
29.
class x
{
int y;
public:
x(int z){y=z;}
} x1[4];
int main()
{ x x2(10);
return 0;}
How many objects are created for the above program?
10
14
5
2
30.
How many modifiers are there in C++?
1
2
3
4
31.
Which of the following is not a new fundamental datatype?
bool
char 16-t
char 32-t
char
32.
33.
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)
34.
The result of sqrt(-9) is _______.
+3
-3
0
error
35.
Which of the following used to identify the type of data and associated operations of handling it?
literals
Datatypes
Keywords
puntuators
36.
Which of the following provides the security of data?
Inheritance
Polymorphism
Data Abstraction
Encapsulation
37.
Which of the following function does not return I?
isupper ()
toupper()
islower()
isdigit()
38.
Which of the following statement is true?
(i) Modular Programming Emphasis on algorithm rather than data
(ii) Object oriented programming emphasis on data rather than algorithm.
only (i)
only (ii)
both (i) and (ii)
none of these
39.
How many different approaches are there for problem solving using computer?
2
3
4
6
40.
Which of the following identifies a given member function is a constructor?
compiler
class
object
method
41.
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
42.
void dispchar(char ch='$';int size=10)
{
for(int i=1;i < = size;i++)
cout < < ch
}
How will you invoke the function dispchar() for the following input?
To print \(\$\) for 10 times
dispchar ();
dispchar( ch,size);
dispchar($,10);
dispchar('$',10 times);
43.
The paradigm which aims more at procedures.
Object Oriented Programming
Procedural programming
Modular programming
Structural programming
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.
Which of the following is a current statement?
(i) C++ is a Hybrid language
(ii) C++ not an object driven language
(iii) C++ supports exception handling
(iv) Data hiding possible
only (i)(ii)
only (i), (iii)
only (i), (iii),(iv)
only (iii), (ii)
47.
In which year, the first standardized version, was published?
1983
1984
1998
2014
48.
Literals are also called ________.
constants
punctuators
operators
identifiers
49.
Identifiers are also called ________.
literals
constants
variables
seperators
50.
Which of the following data types is not a fundamental type?
signed
int
float
char
51.
The smallest individual unit in a program is:
Program
Algorithm
Flowchart
Tokens
52.
Which one of the following is not an algorithm.
NTFS
FIFO
SJE
Round Robin
53.
The most common way of opening a file or a Folder is to __________________click on it.
left
right
double
single
54.
How many important points the loop variant is true?
1
2
3
4
55.
Which of the following is the key to construct iterative algorithms?
loop invariant
loop updation
loop variable
loop condition
56.
Using this recursive definition
\(a^n= \begin{cases}1 & \text { if } n=0 \\ a \times a^{n-1} & \text { otherwise }\end{cases}\)
how many multiplications are needed to calculate a10?
11
10
9
8
57.
Binary Multiplication in possible with........
0 and 1
0 and 0
1 and 1
All the above
58.
How the CD data is represented?
Pits
Tracks
Lands
Rings
59.
Which of the following programs uses ASCII Code?
Only C
only C++
Both C, C++
Java
60.
Which of the following transfer data up to 5 Gigabyte / second?
USB 1.0
USB 2.0
USB 3.0
USB 1.2
61.
Match the following.
| (i) Tablet OS | (1) Linux |
| (ii) Desktop OS | (2) Android |
| (iii) Smart phone OS | (3) ios |
| (iv) OS used in super computer | (4) Windows 7 |
| i) | ii) | iii) | iv) |
| 1 | 4 | 3 | 2 |
| i) | ii) | iii) | iv) |
| 1 | 2 | 4 | 3 |
| i) | ii) | iii) | iv) |
| 4 | 3 | 1 | 2 |
| i) | ii) | iii) | iv) |
| 3 | 4 | 2 | 1 |
62.
The expansion of LCD is _____
Liquid Cathode Diodes
Liquid Cluster Display
Liquid Crystal Display
Live Extract Display
63.
Which term refers to a part which together with another makes up a whole?
Signed
Unsigned
Complement
Uncomplement
64.
The 4 bit binary equivalent of -5 is......
1101
0101
1100
-101
65.
Which program or software is available free of charge?
Open source
Closed source
Shareware
none of these
66.
Which are the symbols seen while collapsing and expanding the folder list in Windows explorer?
*,?
@,?
+,-
*,-
67.
The shortcut key is used to paste the cutted file or folder is _____
Ctrl + V
Ctrl + P
Alt + P
Shift + V
68.
Which command is used to cut file or folder?
File ⟶ Cut
Edit ⟶ Cut
Edit ⟶ Move
Format ⟶ Cut
69.
"75% of Men likes cricket" is............
Information
data
knowledge Record
Record
70.
Which is the most effective tool used for managing program complexity ______.
Specification
Control flow
Composition
none of these
71.
Which defines the rights and responsibilities of the algorithm?
Abstraction
Composition
Specification
None of these
72.
The first commercial microprocessor is a ..........bit processor.
8
16
4
2
73.
How many types of operations carried out of instruction set?
5
4
3
2
74.
Which of the following is the heart of the computer?
CPU
HDD
SSD
ANN
75.
Which unit does the processing of data?
CPU
Registers
Input unit
Output unit
76.
Which of the following process computer instructions?
ALU
Control Unit
Register
Microprocessor
77.
Which is the combination of hardware and software?
Programs
Computer
Data
Information
78.
Which is intended to solve a problem?
Program
Statements
Process
algorithm
79.
Which of the following is an integrated circuit?
Personal computers
Microprocessors
INTEL
Transistors
80.
Which is a basic electronic circuit which operates on one or more signals?
Boolean algebra
Gate
Fundamental gates
Derived gates
81.
Suppose u, v = 10, 5 before the assignment. What are the values of u and v after the sequence of assignments?
1 u :=v
2 v := u
u, v = 5,5
u, v = 5,10
u, v = 10,5
u, v = 10,10
82.
Which of the following is a concept of having more than one operating system on single PC?
Multiuser
Multi tasking
Multiprocessor
Virtual
83.
Which of the following operating system are not in mobile phones?
Symbian
Linux
Apple iOS
Google Android
84.
Testing a loop condition and executing the loop body once is called _________
alternative
sequence
condition
iteration
85.
Which of the following is an iterative statement?
If CS
While CS
--P S1 --Q
both (a) and (b)
86.
Which of the following is (are) a control flow statements?
Sequential
Alternative
Iterative
All of these
87.
Ensuring the input-output relation is
the responsibility of the algorithm and the right of the user.
the responsibility of the user and the right of the algorithm.
the responsibility of the algorithm but not the right of the user.
the responsibility of both the user and the algorithm.
88.
89.
What is the smallest size of data represented in a CD?
blocks
sectors
pits
tracks
90.
Which of the following OS is not based on Linux?
Ubuntu
Redhat
CentOs
BSD
91.
Which is the default folder for many Windows Applications to save your file?
My Document
My Pictures
Documents and Settings
My Computer
92.
From the options given below, choose the operations managed by the operating system.
Memory
Processes
Disks and I/O devices
all of the above
93.
File Management manages
Files
Folders
Directory systems
All the Above
94.
95.
How many memory locations are identified by a processor with 8 bits address bus at a time?
28
1024
256
8000
96.
Which is the fastest memory?
Hard disk
Main memory
Cache memory
Blue-Ray disc
97.
How many characters can be handled in Binary Coded Decimal System?
64
255
256
128
98.
Which refers to the number of bits processed by a computer's CPU?
Byte
Nibble
Word length
Bit
99.
Identify the input device
Printer
Mouse
Plotter
Projector
100.
Identify the output device
Keyboard
Memory
Monitor
Mouse
1.
(a)
expression 1? expression 2 : expression 3 ;
2.
(d)
Conditional operator
3.
(e)
all of these
4.
(a)
semicolon (;)
5.
(b)
10
6.
(a)
{ }
7.
(b)
pass by reference
8.
(b)
in-line
9.
(b)
data members
10.
(c)
public
11.
(a)
Bjurne Strustrup
12.
(d)
over riding
13.
(b)
only (ii)
14.
(c)
Multiple inheritance
15.
(c)
Pharming
16.
(b)
Cracker
17.
(b)
name of an array
18.
(e)
All of these
19.
(b)
garbage value
20.
(a)
file
21.
(b)
Decryption
22.
(b)
Function
23.
(a)
24.
(c)
Android
25.
(d)
26.
(c)
Array
27.
(a)
integer
28.
(d)
Data abstraction
29.
(b)
14
30.
(d)
4
31.
(d)
char
32.
(a)
33.
(c)
Only (iii)
34.
(d)
error
35.
(b)
Datatypes
36.
(c)
Data Abstraction
37.
(b)
toupper()
38.
(c)
both (i) and (ii)
39.
(b)
3
40.
(a)
compiler
41.
(b)
i-true, ii-true, iii-true, iv-true
42.
(c)
dispchar($,10);
43.
(b)
Procedural programming
44.
(b)
x=display()
45.
(a)
stdio.h
46.
(c)
only (i), (iii),(iv)
47.
(c)
1998
48.
(a)
constants
49.
(c)
variables
50.
(a)
signed
51.
(d)
Tokens
52.
(a)
NTFS
53.
(c)
double
54.
(d)
4
55.
(a)
loop invariant
56.
(c)
9
57.
(d)
All the above
58.
(a)
Pits
59.
(c)
Both C, C++
60.
(c)
USB 3.0
61.
(d)
| i) | ii) | iii) | iv) |
| 3 | 4 | 2 | 1 |
62.
(b)
Liquid Cluster Display
63.
(c)
Complement
64.
(a)
1101
65.
(a)
Open source
66.
(c)
+,-
67.
(a)
Ctrl + V
68.
(b)
Edit ⟶ Cut
69.
(a)
Information
70.
(d)
none of these
71.
(c)
Specification
72.
(c)
4
73.
(a)
5
74.
(a)
CPU
75.
(a)
CPU
76.
(a)
ALU
77.
(b)
Computer
78.
(d)
algorithm
79.
(b)
Microprocessors
80.
(b)
Gate
81.
(a)
u, v = 5,5
82.
(d)
Virtual
83.
(b)
Linux
84.
(d)
iteration
85.
(b)
While CS
86.
(d)
All of these
87.
(d)
the responsibility of both the user and the algorithm.
88.
(d)
89.
(c)
pits
90.
(d)
BSD
91.
(a)
My Document
92.
(d)
all of the above
93.
(d)
All the Above
94.
(c)
95.
(c)
256
96.
(c)
Cache memory
97.
(a)
64
98.
(c)
Word length
99.
(b)
Mouse
100.
(c)
Monitor
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