A car company requires a custom Coach View to be created that displays the information
for a single car and allows a business user to select the car. Review the Coach View’s
layout below. The Select This Car control is a stock Checkbox Coach View with Control Id
Car_Selected. The custom Coach View needs to access information within the
Car_Selected control. Assuming that the Data Binding and Configuration Options of the
Car_Selected control are correct, how can a BPM application developer access information
about Car_Selected? Within an event handler for the custom Coach View, use the Coach
View API call:

A.
this.context.getSubview(“Car_Selected”)
B.
this.context.getSubview(“Car_Selected”)[0]
C.
this.context.element.querySelector(“#Car_Selected”)
D.
this.context.element.querySelector(“#Car_Selected”)[0]