Back

Welcome to your UI Technologies Practice Test - 3

Find output of below code

var a = '10'; var b = a = 20; document.write(a+b);

To enable data tainting, the end user sets the _________ environment variable.

What is the output of following Javascript?

var a = 'cpp'; var b = 'buzz'; var c = a/b; document.write(c);

The _______ method of an Array object adds and/or removes elements from an array.

Find the output of below for loop in Javascript

for(var i=0;i<5;i++) { document.write(i++); }

____________ is the tainted property of a window object.

Which tag(s) can handle mouse events in Netscape?

To set up the window to capture all Click events, we use which of the following statement?

What if we put ++ operator inside if condition? find the output of below code

var a = 10; if(a == a++) document.write(a);

How ++ works in Javascript? Find output of below Javascript code.

var a = 10; document.write(a++); document.write(a);

Enroll For Course !