Test Status
      JSJQUERYRANDOMTEST
      (A) Pathname
      (B) Protocol
      (C) Defaultstatus
      (D) Host
      (A) text==pattern
      (B) text.equals(pattern)
      (C) text.test(pattern)
      (D) pattern.test(text)
      (A) window.captureEvents(Event.CLICK);
      (B) window.handleEvents (Event.CLICK);
      (C) window.routeEvents(Event.CLICK );
      (D) window.raiseEvents(Event.CLICK );
      (A) car.make = "Ford";
      (B) car["make"] = "Ford";
      (C) var car = {make: Ford};
      (D) All of the above
      (A) alert("Write some text here")
      (B) confirm("Write some text here")
      (C) prompt("Write here some text","Write default value here")
      (A) jQuery.ajaxSetup()
      (B) jQuery.ajax()
      (C) jQuery.ajaxAsync()
      (A) Badaboom
      (B) Mango
      (C) Sizzle
      (D) AwesomeX
      (A) The methods are basically the same. The only difference is that .width() returns a number, whereas outerWidth() a string.
      (B) width() returns the computed width of the element, while outerWidth() returns the width plus all the margins and paddings.
      (C) No difference. width() is a shorthand alias for outerWidth()
      (A) "New Text"?
      (B) para1.value="New Text";
      (C) para1.firstChild.nodeValue= "New Text";
      (D) para1.nodeValue="New Text";
      (A) ENABLE_TAINT
      (B) MS_ENABLE_TAINT
      (C) NS_ENABLE_TAINT
      (D) ENABLE_TAINT_NS
      (A) null
      (B) undefined
      (C) NaN
      (D) Infinity
      (A) ["palampur", "delhi", "agra", "akot", "aligarh"]
      (B) ["delhi", "agra", "akot", "palampur", "aligarh"]
      (C) ["delhi", "agra", "akot", "aligarh", "palampur"]
      (D) None of them