1.
In JavaScript, which of the following is not an operator?
2.
In JavaScript, which of the following is used to find the name of the client's browser?
3.
In JavaScript, which of the following commands is used to open a new window?
4.
In JavaScript, which of these is used to detect the client´s browser name?
5.
In JavaScript, which of the following is equivalent to A ? B : C?
6.
In JavaScript, which of these methods obtains a random number between 5 and 9?
7.
What is the order of the elements in the array a after the following JavaScript code is executed:
a=(new Array("test",1,2,3,-1,-2,-3,0xFFFFF)).sort()
8.
What is the value of a after the following JavaScript code is executed:
var a=(new Array(10)).toString()
9.
What are the values of a[1] and a[2] after the following JavaScript is executed:
a = new Array();
b = new Array();
a[1] = 3;
b[2] = 5;
a = b;
10.
What is the output of the following JavaScript code:
Number("1") - 1 == 0;