1.
External scripts can’t take the tag _________
2.
Negative positions for string do not work in ______________
3.
Which method is not used for converting variables to number?
4.
Math.random() returns _______________
5.
Which of the following is a valid type of function javascript supports?
6.
Which built-in method returns the characters in a string beginning at the specified location?
7.
Which of the following jQuery method apply a style on an element?
8.
The following jQuery code is an example of _________________.
$('.tooltip').hide().fadeIn(8000).delay(2000).fade0ut(8000);
9.
What is the output of following jQuery code:
var string1 = “Hello”;
var string2 = “World”;
var final = $.trim(string1) + ““ +$.trim(string2);
console.log(quote);
10.
Which of the following jQuery method selects a subset of the matched elements?