12th Standard Syllabus & Materials
12th Standard
TN 12th English Poem - 6 - Incident of the French Camp Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th English Prose - 6 - On the Rule of the Road Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th English Prose - 5 - The Chair Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th English Supplementary - 4 - The Midnight Visitor Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th English Poem - 4 - Ulysses Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th English Prose - 4 - The Summit Sample Question Papers Study Material - QB365 Set A

Published on: 27/02/2021
12th Standard English Medium Computer Science Reduced Syllabus One mark Important Questions With Answer Key - 2021(Public Exam )
Download Tamil Nadu 12th 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.
After the database has been created, the data can be manipulated using ___________ procedures.
TCL
DCL
DQL
DML
2.
Which keyword is used to divide the table into groups?
DIVIDE BY
ORDER BY
GROUP BY
HAVING
3.
Which command is used to retrieve a subset of records from one or more tables?
QUERY
SUBSET
SET
SELECT
4.
In the INSERT command the fields that are omitted will have
default value
Null value
No value
a or b
5.
Which of the following ensures the accuracy and reliability of the data in the database?
Constraint
Table
Classes
Data types
6.
________ is a software application for the interaction between users and the databases.
CSV
Python
DBMS
Sys
7.
cursor.description will be stored as a
list
set
tuple
dictionary
8.
Which of the following is a command to open the already created database from the statement connection = sqlite3.connect ("ABC.db")
ABC.db
connect
SQlite3
connection
9.
_________ is a software design technique to split the code into separate parts.
Procedural programming
Structural programming
Object Oriented Programming
Modular Programming
10.
_________ is a program that calls GCC for linking the c++ library files to the object code.
c++
C
Python
g++
11.
Which of the following is not a python module?
OS
Sys
Tel
Getopt
12.
CSV file name ________ can be represented in the open command using
" "
' '
",,,, ",,,,
a or b
13.
Which of the following class of CSV file module is used to write CSV file with quotes by registering new dialects?
csv.register ( )
csv.dialeet ( )
csv.dialect register ( )
csv.register_dialeet ( )
14.
Which of the following is not a format in which CSV file data can be read?
Quotes
Pipe
Semi colon
Comma
15.
Which of the following is a human readable text file where each line has fields?
CSV file
CSV module
CSV sheet
CSV text
16.
Which sorting techniques working by taking elements from the list one by one and inserting them in their correct position into a new sorted list?
Bubble
Selection
Merge
Insertion
17.
Which of the following should be written for the selected programming language with specific syntax?
Algorithm
Pseudocode
Process
Program
18.
In Object Oriented Programming Language security is implanted through_______
Access modifiers
Access modules
Access variables
Keywords
19.
How many types of variable scope are there?
2
4
3
6
20.
A ________ is a comma separated values surround with parentheses.
List
Tuple
Set
Dictionary
21.
List can also be called as
Functions
Class
Structure
Pairs
22.
Which of the following is a type for objects whose behavior is defined by a set of value and a set of operations?
User-defined datatype
Derived datatype
Built-in datatype
Abstract datatype
23.
Which of the following is an instance created from the class?
parameter
function
subroutines
object
24.
Identify the package manager for Python packages, or modules.
Matplotlib
PIP
plt.show()
python package
25.
Which of the following is called the master table?
sqlite_master
sql_master
main_master
master_main
26.
Identify the function call statement in the following snippet.
if __name__ =='__main__':
main(sys.argv[1:])
main(sys.argv[1:])
__name__
__main__
argv
27.
getopt() will return an empty array if there is no error in splitting strings to
argv variable
opt variable
args variable
ifile variable
28.
A framework for interfacing Python and C++ is
Ctypes
SWIG
Cython
Boost
29.
Importing C++ program in a Python program is called
wrapping
Downloading
Interconnecting
Parsing
30.
Which of the following is a string used to terminate lines produced by writer()method of csv module?
Line Terminator
Enter key
Form feed
Data Terminator
31.
Which of the following mode is used when dealing with non-text files like image or exe files?
Text mode
Binary mode
xls mode
csv mode
32.
Which of the following module is provided by Python to do several operations on the CSV files?
py
xls
csv
os
33.
34.
Who is called Father of Relational Database from the following?
Chris Date
Hugh Darween
Edgar Frank Codd
Edgar Frank Cadd
35.
Which database model represents parent-child relationship?
Relational
Network
Hierarchical
Object
36.
Functions defined inside a class:
Functions
Module
Methods
section
37.
Which of the following Python function can be used to add more than one element within an existing list?
append()
append_more()
extend()
more()
38.
If List=[17,23,41,10] then List.append(32) will result
[32,17,23,41,10]
[17,23,41,10,32]
[10,17,23,32,41]
[41,32,23,17,10]
39.
If List=[10,20,30,40,50] then List[2]=35 will result
[35,10,20,30,40,50]
[10,20,30,40,50,35]
[10,20,35,40,50]
[10,35,30,40,50]
40.
Which of the following formatting character is used to print exponential notation in upper case?
%e
%E
%g
%n
41.
Pick the correct one to execute the given statement successfully.
if ____ : print(x, " is a leap year")
x%2=0
x%4==0
x/4=0
x%4=0
42.
While defining a function which of the following symbol is used.
; (semicolon)
. (dot)
: (colon)
$ (dollar)
43.
44.
The condition in the if statement should be in the form of
Arithmetic or Relational expression
Arithmetic or Logical expression
Relational or Logical expression
Arithmetic
45.
In dynamic programming, the technique of storing the previously calculated values is called ?
Saving value property
Storing value property
Memoization
Mapping
46.
Time complexity of bubble sort in best case is
θ (n)
θ (nlogn)
θ (n2)
θ (n(logn) 2)
47.
Containers for mapping names of variables to objects is called
Scope
Mapping
Binding
Namespaces
48.
The functions which will give exact result when same arguments are passed are called
Impure functions
Partial Functions
Dynamic Functions
Pure functions
49.
Which of the following carries out the instructions defined in the interface?
Operating System
Compiler
Implementation
Interpreter
50.
Which of the following defines what an object can do?
Operating System
Compiler
Interface
Interpreter
1.
(d)
DML
2.
(c)
GROUP BY
3.
(d)
SELECT
4.
(b)
Null value
5.
(a)
Constraint
6.
(c)
DBMS
7.
(c)
tuple
8.
(b)
connect
9.
(d)
Modular Programming
10.
(d)
g++
11.
(c)
Tel
12.
(d)
a or b
13.
(d)
csv.register_dialeet ( )
14.
(c)
Semi colon
15.
(a)
CSV file
16.
(d)
Insertion
17.
(d)
Program
18.
(a)
Access modifiers
19.
(b)
4
20.
(b)
Tuple
21.
(d)
Pairs
22.
(d)
Abstract datatype
23.
(d)
object
24.
(b)
PIP
25.
(a)
sqlite_master
26.
(a)
main(sys.argv[1:])
27.
(a)
argv variable
28.
(d)
Boost
29.
(a)
wrapping
30.
(a)
Line Terminator
31.
(b)
Binary mode
32.
(c)
csv
33.
(a)
34.
(c)
Edgar Frank Codd
35.
(c)
Hierarchical
36.
(c)
Methods
37.
(c)
extend()
38.
(b)
[17,23,41,10,32]
39.
(c)
[10,20,35,40,50]
40.
(b)
%E
41.
(b)
x%4==0
42.
(c)
: (colon)
43.
(b)
44.
(c)
Relational or Logical expression
45.
(c)
Memoization
46.
(a)
θ (n)
47.
(d)
Namespaces
48.
(d)
Pure functions
49.
(c)
Implementation
50.
(c)
Interface
12th Standard Syllabus & Materials
12th Standard
TN 12th English Supplementary - 3 - The Hour of Truth (Play) Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th English Poem - 3 - All the World’s a Stage Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th English Prose - 3 - In Celebration of Being Alive Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th English Supplementary - 2 - Life of Pi Sample Question Papers Study Material - QB365 Set A
Tamilnadu Stateboard 12th Standard Subjects

Maths

Chemistry

Physics

Biology

Computer Science

Business Maths and Statistics

Economics

Commerce

Accountancy

History

Computer Applications

Biology

Computer Technology

Computer Applications

Computer Science

Business Maths and Statistics

Commerce

Economics

Maths

Chemistry

Physics

Computer Technology

History

Accountancy

Tamil

English

French
Tamilnadu Stateboard Standards