Question: What is the purpose of the data property (seen in the example below) in a route configuration?

  1. a key/value mapping for setting @Input values on the routed component instance
  2. a way to include static, read-only data associated with the route that can be retrieved from the ActivatedRoute
  3. a property on the route that can be used to load dynamic data for the route
  4. an object that will get auto-injected into the routed component's constructor.

Answer: The correct answer of the above question is Option B:a way to include static, read-only data associated with the route that can be retrieved from the ActivatedRoute