Correct Answer: CDTo train city-specific relationships between car type and number of sales, the best approach would involve using feature crosses between the geographical coordinates and car types. Given that latitude and longitude together uniquely define a city location, binning these values and then crossing them separately with the one-hot encoded car type allows for the model to learn specific patterns for each car type in relation to each city’s location. Binning helps manage the variation and scales better, while crossing allows for interactions between the features. Hence, using two feature crosses as an element-wise product: the first between binned latitude and one-hot encoded car type, and the second between binned longitude and one-hot encoded car type makes logical sense.