Test Status
      JSJQUERYRANDOMTEST
      (A) Content Distribution Network
      (B) Common Distribution Network
      (C) Collective Distribution Network
      (D) None of these
      (A) typeof
      (B) void
      (C) instanceof
      (D) delete
      (A) <img>
      (B) <a>
      (C) <br>
      (D) none of the above
      (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) toUpperCase()
      (B) toUpper()
      (C) changeCase(case)
      (D) None of the above.
      (A) // This is a comment
      (B) /* This is a comment. */
      (C) /* This is a comment
      (D) <!-- This is a comment. -->
      (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"
      (A) Server-side image maps
      (B) Client-side image maps
      (C) Server-side image maps and Client-side image maps
      (D) None of the above
      (A) car.make = "Ford";
      (B) car["make"] = "Ford";
      (C) var car = {make: Ford};
      (D) All of the above