Test Status
      JSJQUERYRANDOMTEST
      (A) ENABLE_TAINT
      (B) MS_ENABLE_TAINT
      (C) NS_ENABLE_TAINT
      (D) ENABLE_TAINT_NS
      (A) <script href=" abc.js">
      (B) <script name=" abc.js">
      (C) <script src=" abc.js">
      (D) None of the above
      (A) Returns the value and continues executing rest of the statements
      (B) Returns the value and stops the program
      (C) Returns the value and stops executing the function
      (D) Stops executing the function and returns the value
      (A) The <script>
      (B) The </script>
      (C) The END statement
      (D) None of the above
      (A) var func = Function("x","y","return x+y");
      (B) var func = Function(x,y){ return x+y;}
      (C) var func = new Function("x", "y", "return x + y");
      (D) None of the above
      (A) getElementById
      (B) getElementByClassName
      (C) getElementByTagName
      (D) None of the above
      (A) ["delhi","agra","akot"]
      (B) ["akot","aligarh","palampur"]
      (C) ["delhi","agra","akot","aligarh","palampur"]
      (D) None
      (A) jQuery is a JSON Library
      (B) jQuery is a JavaScript Library
      (A) Returns false if the argument is not a number.
      (B) Returns true if the argument is not a number.
      (C) Returns true if the argument is a number.
      (D) None of the above
      (A) named function
      (B) anonymous function
      (C) Both of the above.
      (D) None of the above.
      (A) No. of element in object
      (B) No. of variable in object
      (C) Both a and b
      (D) None of these
      (A) do while
      (B) for
      (C) for each
      (D) None of these
      (A) Pathname
      (B) Protocol
      (C) Defaultstatus
      (D) Host
      (A) text==pattern
      (B) text.equals(pattern)
      (C) text.test(pattern)
      (D) pattern.test(text)
      (A) var txt = new Array(1:"tim",2:"kim",3:"jim")
      (B) var txt = new Array:1=("tim")2=("kim")3=("jim")
      (C) var txt = new Array("tim","kim","jim")
      (D) var txt = new Array="tim","kim","jim"