HOTSPOT An ML engineer is working on an ML model to predict the prices of similarly sized homes. The model will base predictions on several features The ML engineer will use the following feature engineering techniques to estimate the prices of the homes: • Feature splitting • Logarithmic transformation • One-hot encoding • Standardized distribution Select the correct feature engineering techniques for the following list of features. Each feature engineering technique should be selected one time or not at all (Select three.) 
Hmm, I’d actually go with standardized distribution for SIZE OF BUILDING instead of logarithmic transformation. Usually log is best if the data is highly skewed, but unless they specify that in the question, standardizing is common for numeric features. CITY: one-hot encoding and TYPE_YEAR: feature splitting still make sense. Not 100% sure though, maybe overlooked a clue in the image?