Question: What is the purpose of the data property (seen in the example below) in a route configuration?
- a key/value mapping for setting @Input values on the routed component instance
- a way to include static, read-only data associated with the route that can be retrieved from the ActivatedRoute
- a property on the route that can be used to load dynamic data for the route
- 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