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: 13/05/2022
QB365 provides detailed and simple solution for every book back questions in class 12 Computer Applications subject.It will helps to get more idea about question pattern in every book back questions with solution.
latest Book back QuestionsDownload 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.
Describe how E-Commerce is related to socio-technological changes?
2.
What are the main functional areas of Open NMS?
3.
What are the components involved in Ethernet cabling?
4.
What are the differences between serial and parallel ports?
5.
Write a note on crossover cables.
6.
Differentiate Domain name and URL
7.
Write a note on DNS.
8.
9.
List out the components of a RFID enabled system.
10.
How computer networks are money saving?
11.
What is the use of artificial Intelligence?
12.
13.
Write is the purpose of MySQLi function available.
14.
Write the features Form Handling.
15.
Write short notes on Do while Loop.
16.
Write the purpose of Looping Structure in PHP
17.
Differentiate Switch and if else statement.
18.
Write the features Conditional Statements in PHP.
19.
Write Short notes on Array.
20.
Write the features of built-in Functions.
21.
Differentiate Server side and Client Side Scripting language.
22.
Write the use of any three tools in PageMaker along with symbols.
23.
What is PageMaker? Explain its uses.
24.
Describe the various file formats in multimedia.
25.
Describe the features and techniques of animation.
1.
(i) The growth of E-Commerce is also related to the socio-technological changes.
(ii) The more, the medium becomes deep rooted, the more, are the users drawn towards it. Increase of users, increases the markets.
(iii) As the markets expand, more business organizations are attracted. The more business accumulation creates competition.
(iv) The competition leads to innovation; Innovation in turn drives the development of technology; technology facilitates E-Commerce's growth.
2.
Open NMS has three main functional areas:
(i) Services monitoring
(ii) Data Gathering
(iii) Event Management and notification
(i) Services monitoring:
A number of monitor modules can govern if network-based services are accessible (ICMP, HTTP, DNS, etc.).
(ii) Data Gathering:
Data Gathering by SNMP and JMX (Simple Network Management Protocol-SNMP, Java Management Extensions-JMX).
(iii) Event Management and notification:
It comprises of alarm reduction and a robust announcement system with acceleration and duty schedules.
3.
The four main components used in the Ethernet Cabling are
(i) Patch cable [Twisted pair]
(ii) RJ45 connector
(iii) Ethernet ports
(iv) Crimping tool
4.
| S.No | Serial Port | Parallel Port |
|---|---|---|
| 1. | It transmit the data one bit at one time. | It transmit the data 8-bit at one time. |
| 2. | Slower than the parallel port | Fast than a serial port |
| 3. | RS232 is type of serial cable, also known as Null modem cable. | Used to connect the printer and other disk drives. |
5.
(i) If you require a cable to connect two computers or Ethernet devices directly together without a hub, then you will need to use a Crossover cable instead.
(ii) Here, the pairs of Tx and Rx lines are crossed.
(iii) It means pin 1 & 2 of the plug on one end are connected with pin 3 & 6 of the plug on other end, and vice versa (3 & 6 to pin 1 & 2).
(iv) The easiest way to make a crossover cable is to make one end to T568A colour coding and the other end to T568B.
6.
| URL | Domain Name |
|---|---|
| (i) It is sequence of labels. Sequence of labels are separated by dot(.) | (i) URL is the address of a document on the Internet |
| (ii) Domain name is always read from the lower level to higher level (ie) From leaf node to root node. | (ii) URL is made up of four parts - protocols, hostname, folder name and file name. |
| (iii) Since the root node always represented NULL string, all the domain name ending with dot. | (iii) Each part has its own specific functions.Depending on the applications, additional information can be added to the URL. |
7.
(i) Domain Name System (DNS) maintains all the directory of domain names and help us to access the websites using the domain names.
(ii) It translates the domain name into IP address.
(iii) The foure important components of the Domain Name System are Namespace, Name Server, Zone and Resolver.
8.
9.
Main components of RFID system
1. RFID tag: It has silicon microchip attached to a small antenna and mounted on a substrate.
2. A reader: It has a scanner with antennas to transmit and receive signals, used for communication.
3. A controller: It is the host computer with a microprocessor which receives the reader input and process the data.
10.
Computer networking is also money saving as it reduces paper work, manpower, resources sharing, software sharing and also time saving.
11.
Artificial intelligence helps to predict traffic as it collects and analyzes data in real time.
12.
13.
In PHP Scripting language many functions are available for MySQL Database connectivity and executing SQL queries. MySQLi is extension in PHP Scripting language which gives access to the MySQL database. MySQLi extension was introduced version 5.0.0.
The MySQLi extension contains the following important functions which are related to MySQL database connectivity and management.
i) Mysqli_connect() Function
ii) Mysqli_close() Function
iii) Mysqli_query() Function
14.
(i) To get form data, we need to use PHP $_GET and S_POST.
(ii) To retrieve data from get request, we need to use $_GET and for post request $_POST.
(iii) We can send limited amount of data through get request and large amount of data through post request.
15.
1. Do whileloop always run the statement inside of the loop block at the first time execution.
2. Then it is checking the condition whether true or false.
3. It executes the loop, if the specified condition is true.
Syntax:
do
{code to executed;
}while (condition is true);
16.
1. In Programming, the looping structure is often necessary to repeat the same block of code for a given number of times, until a certain condition is met.
2. Loop properties easy way to iterate over arrays.
3. Loop structure needed when we want to run block of code again and again.
17.
| Switch Statement | If else statement |
|---|---|
| Switch statement uses single expression for multiple choices. | if-else statement uses multiple statement for multiple choices. |
| It test only for equality. | It test for equality as well as for logical expression. |
| Statement will be executed is decided by user. | Evaluates any type |
| If switch statements does not match any cases, the default statements is executed. | If the condition fails, then by default the else statement is executed. |
18.
(i) Conditional statements are useful for writing decision making logics. It is the most important feature of many programming languages, including PHP.
(ii) When we write the code for conditional statements very often, we can perform different actions for different decisions in different business logic.
19.
Array is a concept that stores more than one value of same data type in single array variable.
They are 3 types of array concepts in PHP.
(i) Indexed Arrays,
(ii) Associative Array and
(iii) Multi-Dimensional Array.
Usage of Array:
When combined with foreach statement which allows loop through an array quickly with very little code.
20.
1. PHP has more than 700 built-in functions that perform different tasks.
2. It exists in PHP installation package.
3. It is reusable piece
4. It can either return values when called or can simply perform an operation without returning any value.
21.
| Basis for comparison | Server-side scripting | Client-side scripting |
|---|---|---|
| Basic | Works in the back end which could not be visible at the client end. | Works at the front end and script are visible among the users. |
| Processing | Requires server interaction | Does not need interaction with the server |
| Languages involved | PHP, ASP.net,Ruby on Rails, ColdFusion, Python, etcetera. | HTML, CSS, JavaScript, etc. |
| Affect | Could effectively customize the web pages and provide dynamic websites | Can reduce the load to the server. |
| Server-side scripting |
Relatively secure. | Insecure |
22.
i). Line Tool - Used to draw straight lines in any direction.
ii). Ellipse Tool - Used to draw circles and ellipses.
iii). Polygon Tool - Used to draw polygon shape.
23.
(i) Adobe PageMaker is a page layout software
(ii) It is used to design and produce documents that can be printed.
(iii) A simple business card to a large book can be created.
(iv) Page layout software includes tools that allows to easily position text and graphics on document pages.
(v) Pictures and text next to each other, on top of each other, or beside each other can be placed.
24.
Various file formats used in multimedia are
(i) Text formats
(ii) Image formats
(iii) Digital Audio file formats and
(iv) Digital Video file formats.
(i) Text formats : Rich Text Formats and Plain Text Format are used in Text formats.
(ii) Image formats : TIFF, BMP, DIB, GIF, JPEG, TGA, PNG are image formats.
(iii) Digital Audio file formats : WAV, MP3, OGG, AIFF, WMA and RA are Digital Audio file formats.
(iv) Digital Video file formats : AVI, MPEG are digital video file formats.
25.
Animation is the process of displaying still images so quickly so that they give the impression of continuous movement.
Features:
(i) Animation tools are very powerful and effective.
(ii) Frame rate of 16 frames/sec gives the impression of smoothness.
(iii) For natural looking, frames rate should be atleast 25 frames/sec.
There are two basic techniques of animations:
(a) Path animation
(b) Frame animation.
(a) Path Animation:
Path animation involves moving an object on a screen that has a constant background.
(b) Frame Animation:
In frame animations, multiple objects are allowed to travel simultaneously and the background or the objects also changes.
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