Test Status
      JSJQUERYTEST2
      (A) var city = new Array("delhi","agra","akot","aligarh");
      (B) var city = ["delhi", "agra", "akot", "aligarh"];
      (C) Both a and b
      (D) None of them
      (A) $("p").manipulate("background-color","red");
      (B) $("p").layout("background-color","red");
      (C) $("p").style("background-color","red");
      (D) $("p").css("background-color","red");
      (A) text==pattern
      (B) text.equals(pattern)
      (C) text.test(pattern)
      (D) pattern.test(text)
      (A) The first div element with class="intro"
      (B) The first div element with id="intro"
      (C) All div elements with id="intro"
      (D) All div elements with class="intro"
      (A) RegExpObj
      (B) RegExpClass
      (C) RegExp
      (D) StringExp
      (A) hidden()
      (B) display(none)
      (C) visible(false)
      (D) hide()
      (A) JavaScript is a stripped-down version of Java
      (B) JavaScript's syntax is loosely based on Java's
      (C) They both originated on the island of Java
      (D) None of the above