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/10/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.
The value of the type attribute of < script >tag is_______.
text / script
text / javascript
javascript / text
Script / text
2.
Which of the following tag used to create Javascript?
< java >
< script >
< sup >
< javascript >
3.
The version of JavaScript introduced by Netscape and Sun Inc is?
2.0
1.0
3.0
1.2
4.
Which of the following language provides many advantages over traditional CGI server-side scripts?
JavaScript
C++
Java
Python
5.
6.
A Data value for variable that appears directly in a program by using a
loop
Literal
Statement
Text
7.
JavaScript ignores spaces that appear between
Command
Scripts
Tokens
Text
8.
The file reload into the browser use the shortcut key is_______.
F2
F3
F4
F5
9.
Java Scripts can be implemented using which statements?
< head >
< Java >
< script >
< text >
10.
The Dynamic Web Page help to save server's
Work
Route
Traffic
Pvath
11.
Which provide a common scripting language to web developers to design, test and deploy Internet Application?
C
C++
Java
Javascript
12.
Define variable? How variable declared in JavaScript?
13.
Expand (i) DHTML (ii) XHTML.
14.
What is the uses of prompt dialog box?
15.
Write note on types of Operator.
16.
What is conditional operator give suitable example?
17.
Write a notes to type casting in JavaScript
18.
Write a syntax of < script > tag.
19.
Write the syntax of confirm () dialog box.
20.
Difference between the increment and Decrement operator.
21.
What are the uses of Logical Operators?
22.
Write about tag.
23.
What are the advantages of programming language?
24.
Explain about the Arithmetic operator with suitable example.
25.
Explain about the popup dialog boxes in JavaScript.
1.
(b)
text / javascript
2.
(b)
< script >
3.
(b)
1.0
4.
(a)
JavaScript
5.
(b)
6.
(b)
Literal
7.
(c)
Tokens
8.
(d)
F5
9.
(c)
< script >
10.
(c)
Traffic
11.
(d)
Javascript
12.
Variable is a memory location where value can be stored. Variable is a symbolic name for a value Variables are declared with the var keyword in JavaScript. Every variable has a name, called identifier.
13.
(i) DHTML : Dynamic Hyper Text Markup Language.
(ii) XHTML : Extensible Hyper Text Markup Language.
14.
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
15.
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.
16.
The?: is the conditional operator in JavaScript, which requires three operands, hence it is called the ternary operator. The syntax is
var variablename=(condition) ?value 1: value2;
Example :var result=(10>15)?100 :150;
17.
Type casting is the act of converting one data type into a different data type which is also called as casting. In JavaScript there are two type of casting,
(i) Implicit casting and
(ii) Explicit casting
Implicit casting occurs automatically in JavaScript when you change the data stored in a variable:
18.
< script Ianguage="javascript'' type='text/ javascript" >
Javascript code
< /script >
19.
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: ");
20.
| 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--; |
21.
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.
22.
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.
23.
(i) JavaScript programming language is used to develop interactive web pages called Dynamic Web pages.
(ii) User entered data in the Dynamic Web page can be validated before sending it to the server. This saves server traffic, which means less load on your server
(iii) JavaScript includes items such as Texboxes, Buttons, drag-and-drop components and sliders to give a Rich Interface to site visitors.
24.
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) |
25.
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