Logo

Javascript Questions Set 223:

Quiz Mode

The attribute which is used to include javascript externally is 

1
2
3
4

Solution:

If you want to configure the scope of the Cookie visibility, what can you use?

1
2
3
4

Solution:

Which of the following properties are associated with the Processing event?

1
2
3
4

Solution:

___________ are the simplest and fastest components which can be written.

1
2
3
4

Solution:

Which is the predefined function that is called to validate data?

1
2
3
4

Solution:

What is the output of the following script?


var count = [1,,3];

1
2
3
4

Solution:

What is block statement in Javascript?

1
2
3
4

Solution:

Predict the output of the given function calls:


function add(c, d) {
 return this.a + this.b + c + d;
}

var o = {a: 1, b: 3};

add.call(o, 5, 7);

add.apply(o, [10, 20]);

1
2
3
4

Solution:

What is the purpose of the advanced mode in the Closure Compiler?

1
2
3
4

Solution:

 “An expression that can legally appear on the left side of an assignment expression.” is a well known explanation for variables, properties of objects, and elements of arrays. They are called ___________ 

1
2
3
4

Solution: