Question: Which describes how jQuery makes working with the DOM faster?

  1. jQuery optimizes the DOM in a background thread, making updates faster.
  2. jQuery avoids using the DOM at all.
  3. jQuery uses a virtual DOM that batches updates, making inserts and deletes faster.
  4. jQuery code to perform DOM manipulation is shorter and easier to write, but does not make DOM operations faster.

Answer: The correct answer of the above question is Option D:jQuery code to perform DOM manipulation is shorter and easier to write, but does not make DOM operations faster.