12th Standard Syllabus & Materials
12th Standard
TN 12th Computer Applications மின்னணு தரவு பரிமாற்றம் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications மின் - வணிக பாதுகாப்பு அமைப்புகள் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications மின்னணு செலுத்தல் முறைகள் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications மின் - வணிகம் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications திறந்த மூல கருத்துருக்கள் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications வலையமைப்பு வடமிடல் Sample Question Papers Study Material - QB365 Set A

Published on: 31/12/2022
QB365 provides a detailed and simple solution for every Possible Questions in Class 12 Computer Science Subject - Important 1 Mark MCQ's, English Medium. It will help Students to get more practice questions, Students can Practice these question papers in addition to score best marks.
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.
if..else statement provides ________________ possibilities and the condition determines which block is to be executed.
2
3
4
5
2.
Which of the following operators are useful to do string manipulation?
+, -
*, /
+ *
; "
3.
print (format (14,'f') displays
14.00
14
14.0000
14.000000
4.
Which of the following is not an example of data structures?
Control statement
Structure
List
Dictionary
5.
Choose the type of scope for a variable '9! defined in the following program.
Disp ( ):
a:=7
Print a
Disp ( )
Global
Enclosed
Local
Built-in
6.
Which mode can also be used as a simple calculator?
Calc mode
Interactive mode
Script mode
Code mode
7.
ADT expansion is
Abstract Data Template
Absolute Data Type
Abstract Data Type
Application Development Tool
8.
All functions are________ definitions.
static
dynamic
algorithmic
static
9.
Which of the following is a description of all functions in object oriented programming language?
Implementation
parameter
Interface
Arugument
10.
What must the used when a bulk of statements to be repeated for many number of times?
Algorithm
Program
Subroutines
Parameters
11.
Read the code:
a. import matplotlib.pyplot as plt
b. plt.plot(3,2)
c. plt.show()
Identify the output for the above coding
12.
Read the following code: Identify the purpose of this code and choose the right option from the following.
C:\Users\Your Name\AppData\Local\Programs\Python\Python36-32\Scripts>pip list
List installed packages
list command
Install PIP
packages installed
13.
Which is a python package used for 2D graphics?
matplotlib.pyplot
matplotlib.pip
matplotlib.numpy
matplotlib.plt
14.
Which of the following clause avoide the duplicate?
Distinct
Remove
Where
GroupBy
15.
The function that returns the largest value of the selected column is
MAX()
LARGE()
HIGH()
MAXIMUM()
16.
Which of the following is a control structure used to traverse and fetch the records of the database?
Pointer
Key
Cursor
Insertion point
17.
What does __name__ contains?
c++ filename
main() name
python filename
os module name
18.
19.
Importing C++ program in a Python program is called
wrapping
Downloading
Interconnecting
Parsing
20.
21.
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
22.
The expansion of CRLF is
Control Return and Line Feed
Carriage Return and Form Feed
Control Router and Line Feed
Carriage Return and Line Feed
23.
24.
Which command lets to change the structure of the table?
SELECT
ORDER BY
MODIFY
ALTER
25.
Who is called Father of Relational Database from the following?
Chris Date
Hugh Darween
Edgar Frank Codd
Edgar Frank Cadd
26.
What is the acronym of DBMS?
DataBase Management Symbol
Database Managing System
DataBase Management System
DataBasic Management System
27.
The process of creating an object is called as:
Constructor
Destructor
Initialize
Instantiation
28.
29.
The keys in Python, dictionary is specified by
=
;
+
":"
30.
What is the use of type() function in python?
To create a Tuple
To know the type of an element in tuple.
To know the data type of python object
To create a list.
31.
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]
32.
Which of the following formatting character is used to print exponential notation in upper case?
%e
%E
%g
%n
33.
Strings in python:
Changeable
Mutable
Immutable
flexible
34.
Which of the following keyword is used to define the function testpython(): ?
define
pass
def
while
35.
36.
Which punctuation should be used in the blank?
if < condition > ____
statements-block 1
else:
statements-block 2
;
::
!
" : "
37.
38.
What plays a vital role in Python programming?
Statements
Control
Structure
Indentation
39.
In dynamic programming, the technique of storing the previously calculated values is called ?
Saving value property
Storing value property
Memoization
Mapping
40.
Which of the following is not a stable sorting algorithm?
Insertion sort
Quick sort
Merge sort
Selection sort
41.
From the following sorting algorithms which algorithm needs the minimum number of swaps?
Bubble sort
Insertion sort
Selection sort
All the above
42.
Which of the following is not a Keyword in Python?
break
while
continue
operators
43.
Which of the following shortcut is used to create new Python Program?
Ctrl + C
Ctrl + F
Ctrl + B
Ctrl + N
44.
Which of the following security technique that regulates who can use resources in a computing environment?
Password
Authentication
Access control
Certification
45.
Which of the following is used in programming languages to map the variable and object?
::
:=
=
==
46.
Which of the following is constructed by placing expressions within square brackets?
Tuples
Lists
Classes
quadrats
47.
Which of the following is a compound structure?
Pair
Triplet
single
quadrat
48.
Which of the following functions that retrieve information from the data type?
Constructors
Selectors
recursive
Nested
49.
Which of the following carries out the instructions defined in the interface?
Operating System
Compiler
Implementation
Interpreter
50.
The variables in a function definition are called as
Subroutines
Function
Definition
Parameters
1.
(a)
2
2.
(c)
+ *
3.
(d)
14.000000
4.
(a)
Control statement
5.
(c)
Local
6.
(b)
Interactive mode
7.
(c)
Abstract Data Type
8.
(a)
static
9.
(c)
Interface
10.
(c)
Subroutines
11.
(c)
12.
(d)
packages installed
13.
(a)
matplotlib.pyplot
14.
(a)
Distinct
15.
(a)
MAX()
16.
(c)
Cursor
17.
(a)
c++ filename
18.
(a)
19.
(a)
wrapping
20.
(c)
21.
(a)
Line Terminator
22.
(d)
Carriage Return and Line Feed
23.
(a)
24.
(d)
ALTER
25.
(c)
Edgar Frank Codd
26.
(c)
DataBase Management System
27.
(d)
Instantiation
28.
(b)
29.
(d)
":"
30.
(c)
To know the data type of python object
31.
(c)
[10,20,35,40,50]
32.
(b)
%E
33.
(c)
Immutable
34.
(c)
def
35.
(b)
36.
(d)
" : "
37.
(c)
38.
(d)
Indentation
39.
(c)
Memoization
40.
(d)
Selection sort
41.
(c)
Selection sort
42.
(d)
operators
43.
(d)
Ctrl + N
44.
(c)
Access control
45.
(c)
=
46.
(b)
Lists
47.
(a)
Pair
48.
(b)
Selectors
49.
(c)
Implementation
50.
(d)
Parameters
12th Standard Syllabus & Materials
12th Standard
TN 12th Computer Applications களப்பெயர் முறைமை (DNS) Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications வலையமைப்பு எடுத்துக்காட்டுகள் மற்றும் நெறிமுறைகள் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications கணினி வலையமைப்பு ஓர் அறிமுகம் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications PHP-உடன் MySQL-ஐ இணைத்தல் 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