Local Browser used for validations on the Web Pages uses __________.
Java
HTML
CSS
JS
Answer : D
View More Related Question
1) Assume that we have to convert “false” that is a non-string to string. The command that we use is (without invoking the “new” operator)
false.toString()
String(false)
String newvariable=”false”
Both false.toString() and String(false)
View Answer
2) JavaScript is designed for following purpose
To Style HTML Pages
To Execute Query Related to DB on Server
To add interactivity to HTML Pages.
To Perform Server Side Scripting Opertion
View Answer
3) Which was the first browser to support JavaScript ?
4) JavaScript was invented at _______ Lab.
5) Consider the following snippet code
var string1 = ”123”;
var intvalue = 123;
alert( string1 + intvalue );
The result would be