Question: Which statement about event emitters is false?

  1. Event names must be camelCase strings.
  2. The emit method allows a arbitrary set of arguments to be passed to the listener functions.
  3. Any values returned by the listeners for an emitted events are ignored.
  4. When an event emitter objeect emits an event, all of the functions attached to that specific event are called synchronously.

Answer: The correct answer of the above question is Option A:Event names must be camelCase strings.