12th Standard Syllabus & Materials
12th Standard
TN 12th Standard Biology Zoology - Reproduction in Organisms Creative Questions Study Material - QB365 Set D
NEW12th Standard
TN 12th Standard Biology Zoology - Reproduction in Organisms Creative Questions Study Material - QB365 Set C
NEW12th Standard
TN 12th Standard Biology Zoology - Reproduction in Organisms Creative Questions Study Material - QB365 Set B
NEW12th Standard
TN 12th Standard Biology Zoology - Reproduction in Organisms Creative Questions Study Material - QB365 Set A
NEW12th Standard
TN 12th Standard Physics Electronics and Communication Creative Questions Study Material - QB365 Set D
NEW12th Standard
TN 12th Standard Physics Electronics and Communication Creative Questions Study Material - QB365 Set C

Published on: 01/03/2021
12th Standard English Medium Computer Applications Reduced Syllabus Two mark Important Questions with Answer key - 2021(Public Exam)
Download Tamil Nadu 12th Standard Computer Applications 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 Applications Test

1.
What is called gift cards?
2.
Define non-repudiation.
3.
List the types of micro electronic payments based on its algorithm
4.
What is dotcom bubble and dotcom burst?
5.
Distinguish between E-Business and E-Commerce
6.
Write short notes on NS2.
7.
What is meant by network simulator?
8.
What is the use of Crimping tool?
9.
What are the uses of USB cables?
10.
11.
List out four URLs you know.
12.
What is an IP address?
13.
14.
15.
List out some features of mobile network.
16.
Define Internet.
17.
What is mysqli_fetch_assoc() Function?
18.
Give few examples of MySQLi Queries.
19.
What is MySQLi function?
20.
Write Syntax of Browse button in HTML.
21.
Write Syntax of Text box in HTML.
22.
Define for form Handling method in PHP.
23.
Write Syntax of Do while loop in PHP.
24.
Write Syntax of For loop in PHP.
25.
Define for loop in PHP.
26.
Write the usage of Switch Statement in PHP.
27.
Write the Syntax of an If ... else statement in PHP.
28.
What is the purpose of the if ... else statement?
29.
What are the different types of conditional statements in PHP?
30.
Define associative array.
31.
Usage of Array in PHP.
32.
What is parameterized Function?
33.
Define Function in PHP.
34.
Define Client Server Architecture.
35.
Is PHP a case sensitive language?
36.
Give few examples of Web Browser?
37.
What are the types scripting language?
38.
What are the common usages of PHP?
39.
Write the difference between SQL and MySQL
40.
Which command is used to make permanent changes done by a transaction?
41.
List any two DDL and DML commands with its Syntax.
42.
List few disadvantages of file processing system.
43.
What is threading text?
44.
What is text editing?
45.
What is a Pasteboard in PageMaker?
46.
Give some examples of DTP software.
47.
Define Multimedia Production.
48.
Classify the TEXT component in multimedia.
49.
What is the syntax for defining a function in PHP?
50.
1.
A magnetics tripe or chip card that holds the value of money to offer as a gift by a E - business
2.
Non-repudiation: Repudiation refers to any act of relinquishing responsibility for a message. Non-repudiation ensures that the signer who digitally signed the document cannot deny having signed it. The digitally signed documents strengthen its recipient integrity claims. Therefore, the recipient can strongly insist on the signature of the sender so as not to be easily denied at a later time.
3.
Based on the algorithm used, it is classified into the following categories.
(i) Hash chain based micro electronic payment systems.
(ii) Hash collisions and hash sequences based micro electronic payment systems.
(iii) Shared secrete keys based micro electronic payment systems.
(iv) Probability based micro electronic payment systems.
4.
(i) Dotcom Bubble : The Dotcom Bubble was a historic excessive growth (excessive assumption) of economy that occurred roughly between 1995 and 2000. It was also a period of extreme growth in the usage and adaptation of the Internet as well.
(ii) Dotcom Burst : The Nasdaq-Composite stock market index, fell from 5046.86 to 1114.11, This is infamously, known as the Dotcom Crash or Dotcom Burst. This began on March 11, 2000 and lasted until October 9, 2002.
5.
| SI NO | E-business | E-Commerce |
|---|---|---|
| 1. | E-Business is the Conduct of business processes on the internet. | E-Commerce is commercial transaction through Internet |
| 2. | E-Business is a superset of E-commerce |
E-Commerce is a subset of E-business. |
| 3. | It is used in the context of B2B transactions |
It is more appropriate in the B2C context |
6.
NS2 is the abbreviation of NETWORK SIMULATOR version 2. It was considered explicitly for exploration in network communication and event-driven open-source simulator in computer.
7.
A network simulator is a software program that replicates the functioning of a computer network.In simulators, the computer network is typically demonstrated with devices, traffic etc. and the performance are evaluated.
8.
(i) The crimping tool is a physical tool is used to connect the patch wire and the Ethernet connector.
(ii) The crimping tool looks like a small cutting handle with two mould of Ethernet part.
9.
The Universal Serial Bus are used to connect keyboard, mouse and other peripheral devices
10.
11.
(i) www.tn.gov.in
(ii) www.google.com
(iii) www.Quora.com
(iv) www.wikipedia.org
12.
Internet Protocol (IP) address is simply the logical address in the network layer. IP address is also used to find the host system in the whole network.
13.
14.
15.
Features of Mobile Networks:
(i) Less consumption of power is used by mobile devices compared to a single transmitter or satellite since the cell towers are closer.
(ii) Huge capacity than a large transmitter, at single frequency can be used for different or many links as long as they are in different in cells.
(iii) As mobile phones are now heavilyused for data communication, the mobile network traffic is fully busy.
16.
Internet is the most common resource shared everywhere.
17.
1. The mysqli_fetch_assoc() function fetches a result row as an associative array .
2. Syntax
mysqIi_fetch_assoc(result);
18.
EXAMPLES:
(i) SELECT * FROM Customers;
(ii) SELECT CustomerName, City FROM Customers;
(iii) SELECT * FROM Customers WHERE Country='Mexico';
(iv) SELECT * FROM Customers WHERE Country=Germany' AND City='Berlin;
(v) DELETE FROM Customers WHERE CustomerName='Alfreds Futterkiste';
19.
(i) The MySQLi functions allows you to access MYSQL database servers.
(ii) For the MYSQL functions to be available, you must compile PHP with support for the MYSQLi extension.
20.
Syntax:
< input type="file" name="myFile" >
21.
Syntax:
<Input type = "text" name = "name">
22.
(i) Form tag is used to mention a method (POST or GET) and control the entire form controls in the HTML document.
(ii) All input values are synchronized and sent to the server via POST or GET method.
23.
Syntax of Do while loop
do
{
code to be executed;
} while (condition is true);
24.
Syntax of 'for loop'
for (init counter; test counter; increment counter)
{
code to be executed;
}
25.
'for loop' is called as the entry - for check loop. The for loop is used to execute a block of code a specific number of times.
26.
(i) It is used to perform different action based on different conditions.
(ii) It works the same as if statement and it can check for multiple values at a time.
27.
Syntax:
if (condition)
{
//True-block;
}
else
{
//False-block;
}
28.
The if ... else statement is a conditional statement in PHP. It executes one block of code if a condition is true and another block of code if the condition is false.
29.
There are several types of conditional statements in PHP. They are
1. 'if' statement
2. 'if...else' statement
3. 'if...elseif...else' statement
4. 'switch' statement
30.
Associative arrays are a key-value pair data structure.
Syntax:
array (key⇒ value, key ⇒ value, etc);
key ⇒ Specifies the key (numeric or string)
value ⇒ Specifies the value
31.
1. The array() function is used to create an array.
2. In PHP,there are three types of arrays:
i). Indexed arrays - Arrays with numeric index
ii). Associative arrays - Arrays with named keys
iii). Multidimensional arrays - Arrays containing one or more arrays
32.
(i) Values can be passed from one function to another function thru parameters.
(ii) The parameter is also called as arguments, it is like variables.
(iii) The arguments are mentioned after the function name and inside of the parenthesis.
33.
A function is a type of sub routine or procedure in a program. A function will be executed by a call to the function and the function returns any data type values or NULL. value to the called function in the part of respective program.
34.
A server is a computer or a device that provides functionality for other programs or devices, called "clients". This architecture is called the client server model, and a single overall computation is distributed across multiple processes or devices.
35.
(i) Yes, PHP is a case sensitive language both upper and lower case are treated differently.
(ii) Example: $x and $X are different variable names.
36.
Google chrome, Firefox, Safari, Opera, Internet Explorer, Netscape Navigator etc.
37.
Web scripting languages are classified into two types.
(i) Client side scripting language
(ii) Server side scripting language.
38.
(i) PHP can be easily embed with HTML and other client side scripting language like CSS [cascading style sheets) and Java scripts.
(ii) It also creates dynamic and interactive webpages in the real time Web development projects.
(iii) It is competitor of ASP and JSP.
(iv) 78.9% of websites are developed by PHP.
39.
| S.No | SQL | MySQL |
| 1. | SQL is a structured query language. | MySQL is a database software. |
| 2. | SQL is used to query and operate a database system. | MySQL allows data handling, storing, modifying, deleting etc. |
40.
COMMIT Command is used to make permanent changes done by transaction.
41.
DDL Commands :
(i) CREATE :
Syntax : CREATE database database name;
(ii) DROP
Syntax : DROP database databasename;
DML Commands:
(i) INSERT
Syntax: INSERT INTO table name (column 1, column 2, column 3) VALUES (value 1, value 2, value 3);
(ii) UPDATE
Syntax: UPDATE tablename
SET column 1 = "new value"
Where column2="value2";
42.
i). Data Duplications : Same data is used be multiple resources for processing, thus created multiple copies of same data wasting the spaces.
ii). High Maintenance : Access control and verifying data consistency needs high maintenance cost.
iii). Security : Less security provided to the data.
43.
The process of connecting text among text blocks is called threading text.
44.
Editing means making changes to the text. Editing a text contains many tasks such as inserting and deleting words and phrases, correcting errors, moving and copying text to different places in the document.
45.
(i) A document page is displayed within a dark border.
(ii) The area outside of the dark border is referred to as the pasteboard.
(iii) Anything that is placed completely in the pasteboard is not visible when the document is printed.
(iv) The use of pasteboard is to temporarily hold elements while designing document.
46.
The popular DTP software are Adobe PageMaker, Adobe InDesign, QuarkXpress, etc.
47.
It is any sort of production that user combination of text, audio and graphics to tell about something.
Eg. Educational, Sale of product etc.
48.
Text component in multimedia can be classified as
(i) Static text.
(ii) Hypertext.
49.
Syntax
function functionName([parameter list])
{
// code to be executed
}
50.
12th Standard Syllabus & Materials
12th Standard
TN 12th Standard Physics Electronics and Communication Creative Questions Study Material - QB365 Set B
NEW12th Standard
TN 12th Standard Physics Electronics and Communication Creative Questions Study Material - QB365 Set A
NEW12th Standard
TN 12th Standard Physics Wave Optics Creative Questions Study Material - QB365 Set D
NEW12th Standard
TN 12th Standard Physics Wave Optics Creative Questions Study Material - QB365 Set C
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