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/08/2020
12th Standard Computer Science English Medium Important 2 Mark Creative Questions (New Syllabus) 2020
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.
How will search NULL values in a field? Give example.
2.
Define TCL.
3.
List few RDBMS packages.
4.
Differentiate lower () and is lower ().
5.
What is meant by stride?
6.
Write a python a program to print your name 10 times.
7.
Differentiate data and information.
8.
What are called tuples?
9.
How the nested block are indented?
10.
Define scatter plot.
11.
What is master table?
12.
How will you execute C++ program through python using MinGW interface? Give example
13.
Write the general form of declaring class in Python.
14.
What is meant by Nested loop structure?
15.
Write a note on the parameters used in print () statement.
16.
What is meant by alternative or branching?
17.
What is an Ordered Dict?
18.
Differentiate text mode and binary mode.
19.
Write a python program to generate the squares of even numbers between 1 and 10 using the concept of list comprehensions.
20.
How will you insert elements in a list? Write the syntax.
21.
What is nested list? Give example.
22.
What are asymptotic notations?
23.
What in algorithmic strategy? Give an example.
24.
Write the description of the following Escape sequence character.
(i) \n
(ii) \t
25.
Write a note on relational or comparative operator.
26.
How will you know the python IDLE working in interactive mode?
27.
What is the use of LEGB rule?
28.
Write a pseudocode to depressant rational numbers using list.
29.
Give an example of pure function.
30.
Write a program to swap two values using tuple assignment.
1.
The NULL value in a field can be searched in a table using the ISNULL in the WHERE clause. For example to list all the students whose Age contains no value, the command is used as: SELECT * FROM Student WHERE Age IS NULL;
2.
Transactional Control Language (TCL) commands are used to manage transactions in the database. These are used to manage the changes made to the data in a table by DML statements.
3.
Oracle, MySQL, MS SQL Server, IBM DB2 and Microsoft Access are RDBMS packages.
4.
| lower() | Returns the exact copy of the string with all the letters in lowercase. |
>>> str1='SAVE EARTH' >>> print(str1.lower()) save eath |
| islower() | Returns True if the string is in lowercase. | >>> str1='welcome' >>> print (str1.islower()) True |
5.
When the slicing operation, you can specify a third argument as the stride, which refers to the number of characters to move forward after the first character is retrieved from the string. The default value of stride is 1.
6.
strl = input ("Enter your name")
print (strl * 10)
7.
(i) Data are raw facts stored in a computer. A data may contain any character, text, word or a number.
(ii) Information is formatted data, which allows to be utilized in a significant way.
8.
Non-keyword variable arguments are called tuples.
9.
A block within a block is called nested block. When the first block statement is indented by a single table space, the second block of statement is indented-by double tab spaces.
10.
Scatter plot: A scatter plot is a type of plot that shows the data as a collection of points. The position of a point depends on its two dimensional value, where each value is a position on either the horizontal or vertical dimension.
11.
SQlite_master is the master table which holds the key information about your database tables.
12.
Executing C++Program through Python
(i) Double click the run terminal of MinGW
(ii) Go to the folder where the Python software is located (Python.exe) is located.
For example here "Python" is located in
13.
In Python, a class is defined by using the keyword class. Every class has a unique name followed by a colon (:).
Syntax:
class class_name:
statement_1
statement_2
.................
.................
statement_n
14.
A loop placed within another loop is called as nested loop structure. A while; within another while; for within another for; for within while and while within for to construc nested loops.
15.
(i) print can have end, sep as parameters. end parameter can be used when we need to give any escape sequences like '\t' for tab, '\n' for new line and so on.
(ii) sep as parameter can be used to specify any special characters like, (comma) (semicolon) as separator between values
16.
There may be situations in our real life programming where we need to skip a segment or set of statements and execute another segment based on the test of a condition. This is called alternative or branching.
17.
DictReader ( ) gives OrderedDict by default in its output. An OrderedDict is a dictionary subclass which saves the order in which its contents are added. To remove the OrderedDict use dict ( ).
18.
| Text mode | Binary mode | |
| i) | The default is reading in text mode. | Binary mode returns bytes. |
| ii) | In this mode, while reading from the file the data would be in the format of strings. | This is the mode to be used when dealing with non-text files like image or exe files |
19.
s = [x **2 for x in range (2,11,2)]
print (s)
20.
(i) To include an element at your desired position, you can use insert ( ) function. The insert( ) function is used to insert an element at any position of a list.
(ii) Syntax:
List.insert (position index, element)
21.
(i) Mylist contains another list as an element. This type of list is known as "Nested List': Nested list is a list containing another list as an element.
(ii) Example: Mylist = [ "Welcome", 3.14, 10, [2,4,6] ]
22.
Asymptotic Notations are languages that uses meaningful statements about time and space complexity
23.
(i) The way of defining an algorithm is called J algorithmic strategy.
(ii) For example to calculate factorial for the given value n then it can be done by defining the function to calculate factorial once for the iteration-1 then it can be called recursively until the number of required iteration is reached.
24.
(i) New line
(ii) Tab
25.
A Relational operator is also called as Comparative operator which checks the relationship between two operands. If the relation is true, it returns True otherwise it returns False.
26.
The prompt >>> indicates that Interpreter is ready to accept instructions. Therefore, the prompt on screen mean IDLE is working in interactive mode.
27.
The LEGB rule is used to decide the order in which the scopes are to be searched for scope resolution. The scopes are listed below in terms of hierarchy (highest to lowest).
28.
rational(n, d):
return [n, d]
numer(x):
return x[0]
denom(x):
return x[1]
29.
let square x
return: x * x
let i: = 0;
ifi < strlen> (s) then
-- Do something which doesn't affect s
++i
30.
a = int(input("Enter value of A:"))
b = int(input('Enter value of B:"))
print("Value of A = ",a, "\n Value of B = ",b)
(a, b) = (b, a)
print("Value of A = ",a, "\n Value of B = ",b)
Output:
Enter value of A: 54
Enter value of B: 38
value of A = 54
value of B = 38
value of A = 38
value of B = 54
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