11th Standard Syllabus & Materials
11th Standard
TN 11th Tamil இயற்கை வேளாண்மை,சுற்றுச்சூழல் -செய்யுள் - மனோன்மணீயம் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil என்னுயிர் என்பேன் -துணைப்பாடம் - இசைத்தமிழர் இருவர் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மொழி கலை -செய்யுள் - ஒவ்வொரு புல்லையும் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - இலக்கணம் - பகுபத உறுப்புகள் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - துணைப்பாடம் - வாடிவாசல் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - செய்யுள் - குறுந்தொகை Important Questions And Answers Study Material - QB365 Set A

Published on: 09/09/2019
Introduction to Javascript
Download Tamil Nadu 11th 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.
How many attributes specifies for < script > tag in the scripting language?
2
3
4
5
2.
Expand DHTML
Distance Hyper Text Markup language
Dynamic Hyper Text Markup language
Distance High Text Markup language
Dynamic High Text Markup language
3.
Java Scripts can be implemented using which statements?
< head >
< Java >
< script >
< text >
4.
Expand CGI
Common Gateway Interface
Complex Gateway Information
Common Gateway Information
Complex Gateway Interface
5.
Which provide a common scripting language to web developers to design, test and deploy Internet Application?
C
C++
Java
Javascript
6.
What is the uses of prompt dialog box?
7.
Write the role of variable in JavaScript.
8.
Write note on types of Operator.
9.
Difference between the increment and Decrement operator.
10.
What are the uses of Logical Operators?
11.
Write about tag.
12.
Explain about the Arithmetic operator with suitable example.
13.
Explain about the popup dialog boxes in JavaScript.
1.
(a)
2
2.
(b)
Dynamic Hyper Text Markup language
3.
(c)
< script >
4.
(a)
Common Gateway Interface
5.
(d)
Javascript
6.
The prompt dialog box is very useful when the user want to pop-up a text box to get user input. Thus, it enables you to interact with the users
7.
Variables are declared in JavaScript using var keyword that allocates storage space for new data and indicates to the interpreter that a new identifier is in use.
8.
The type of operator is used to get the data type (returns a string) of its operand. The operand can be either a literal or a data structure such as a variable, a function, or on object.
9.
| Increment Operator | Decrement Operator |
| The ++ operator increments its single operand. | The -- operator decrements its single operand |
| Its converts its operand to a number, adds 1 to that number, and assigns the incremented value back into the Operand | Its converts its operand to a number, subtracts 1 to that number, and assigns the decremented value back into the operand |
| Post increment: var m=3, n=m++; Pre increment: var m=3, n=++; |
Post decrement: var m=3, n=m--; Pre decrement: var m=3, n=m--; |
10.
Logical operators perform logical (boolean) operations. Logical operators combine or invert boolean values. Once comparisons are made, the logical operators && (AND), || (OR) and ! (NOT) can be used to create more complex conditions.
Best practice is to use logical operators on boolean operands., However, operands of any type can be combined. The strict rules are as follows:
(i) For & & (AND) the result is false if the first operand is false; otherwise, the result is the Boolean value of the second operand.
(ii) For || (OR) the result is true if the first operand is true; otherwise, the result is the Boolean value of the second operand.
(iii) For | (Not)the result is true if the operand is false; otherwise, the result is true.
11.
JavaScript can be implemented using ....
tags. The
tag containing JavaScript can be placed anywhere within in the web page, but it is normally recommended to be kept within the \(<head>\) tags. The
tag alerts the browser program to start interpreting all the text between these tags as a script command.
12.
Javascript supports all the basic arithmetic operators like addition (+),subtraction (-) multiplication (*), division (/), and modulus (%, also known as the remainder operator)
Arithmetic operators :
| Arithmetic Operator | Meaning | Example | Result |
|---|---|---|---|
| + | Addition | var sum = 20 + 120 | Variable sum = 140 |
| - | Subtraction | var diff = 120 - 20 | Variable diff = 100 |
| * | Multiplication | var prod = 10*100 | Variable prod = 1000 |
| / | Division | var res = 100 / 522 | Variable res = 5.22 |
| % | Modulus operator | var rem = 100 % 522 | Variable rem = 22 (remainder) |
13.
JavaScript supports three important types of dialog boxes. Dialog boxes are also called as Popup Boxes. These dialog boxes can be used to raise an alert, or to get confirmation on any input or to have a kind of input from the users.JavaScrípt supports three kind of popup boxes: Alert box, Confirm box, and Promnpt box.
Alert Dialog Box: An alert dialog box is mostly used to give a warning message to the users. For example, if one input field requires to enter some text but the user does not provide any input, then as a part of validation, you can use an alert box to give a warning message. Alert box gives only one button "OK" to select and proceed.
The syntax of alert box is
alert("Message");
(or) Window.alert ("Message");
Example:
alert("Name is compulsory entry);
(or) window.alert("Name is compulsory entry");
Confirm Dialog Box : A confirmation dialog box is mostly used to take user's consent on any option. It displays a dialog box with two buttons: OK and Cancel. If the user clicks on the OK button, the confirm() will return true. If the user clicks on the Cancel button, then confirm() returns false.
The syntax of confirm dialog box is
confirm("message");
(or)
window.confirm("message");
Example :
confirm("Hai Do you want to continue:");
(or)
window.confirm(“Hai Do you want to continue:");
Prompt Dialog Box: The prompt dialog box is very useful when the user want to pop-up a text box to get user input. Thus, it enables you to interact with the user. The user needs to fill in the text box field and then click OK.
The prompt dialog box is displayed using a method called prompt()which takes two parameters :
(i) a label which you want to display in the text box and (ii) a default string to display in the text box. This dialog box has two buttons: OK and Carncel. If the user clicks the OK button, the prompt() will return the entered value from the text box. If the user clicks the Cancel button, the prompt() returns null. The Sntax of prompt dialog box is,
Prompt("Message","default Value");
(or)
window.prompt("sometext","defaultText");
Example:
prompt("Enter Your Name:"Name");
(or)
window.prompt("Enter Your Name:"Name");
11th Standard Syllabus & Materials
11th Standard
TN 11th Tamil பீடு பெற நில் - செய்யுள் - காவடிச்சிந்து Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - உரைநடை - மலை இடப்பெயர்கள் : ஓர் ஆய்வு Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மாமழை போற்றுதும் - துணைப்பாடம் - யானை டாக்டர் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மாமழை போற்றுதும் - செய்யுள் - ஐங்குறுநூறு Important Questions And Answers Study Material - QB365 Set A
Tamilnadu Stateboard 11th Standard Subjects

Maths

Commerce

Economics

Biology

Business Maths and Statistics

Accountancy

Computer Science

Physics

Chemistry

Maths

Biology

Economics

Physics

Chemistry

History

Business Maths and Statistics

Computer Science

Accountancy

Computer Applications

History

Computer Technology

Commerce

Computer Applications

Computer Technology

Tamil

English

French
Tamilnadu Stateboard Standards