Test Status
      JSJQUERYRANDOMTEST
      (A) Pathname
      (B) Protocol
      (C) Defaultstatus
      (D) Host
      (A) document.cookie = 'key1 = value1; key2 = value2; expires = date';
      (B) browser.cookie = 'key1 = value1; key2 = value2; expires = date';
      (C) window.cookie = 'key1 = value1; key2 = value2; expires = date';
      (D) navigator.cookie = 'key1 = value1; key2 = value2; expires = date';
      (A) ["agra", "akot", "aligarh", "delhi"]
      (B) ["delhi", "agra", "akot", "aligarh"]
      (C) ["aligarh", "agra", "akot", "delhi"]
      (D) ["akot", "agra", "delhi", "aligarh"]
      (A) JavaScript is a lightweight, interpreted programming language.
      (B) JavaScript is designed for creating network-centric applications.
      (C) JavaScript is complementary to and integrated with Java.
      (D) All of the above.
      (A) detach()
      (B) remove()
      (C) Both methods can be used
      (D) None of the above
      (A) Mouseover allows you to specify an optional function to use for the mouseout event
      (B) Hover allows you to specify an optional function to use for the mouseout event
      (C) No Difference; Mouseover and Hover are the same
      (A) characterAt()
      (B) getCharAt()
      (C) charAt()
      (D) None of the above.
      (A) It refers current object
      (B) It referes previous object
      (C) It is variable which contains value
      (D) None of the above
      (A) $.support
      (B) $.browser
      (C) $.featureTest
      (D) $.browserTest
      (A) $.get(url,data,callback,type)
      (B) $.ajax(options)
      (C) $.post(url,data,callback,type)
      (D) $.getScript(url,callback)
      (A) var obj = {};
      (B) var obj = new Object();
      (C) var obj = Object.create()
      (D) All of the above