feature engineering
Applied AI interview questions tagged feature engineering, across every topic.
5 questions · 2 unlocked for you
Concepts behind "feature engineering"
The curriculum that explains the ideas these questions test.
Foundational
Feature Engineering: Encoding, Scaling, SelectionFeature engineering is the work of turning raw columns into inputs a model can learn from: encoding categoricals, scaling numerics, and selecting which features to keep. Interviews probe it because it is the unglamorous lever that usually moves a metric more than swapping the model, and because the right choice depends on cardinality, the model family, and leakage risk rather than on a default recipe.📊 Evaluation & ML Foundations
Core
Handling Missing and Corrupted DataMissing data has three mechanisms (MCAR, MAR, MNAR) and the mechanism decides whether dropping rows is safe or biased and which imputation is valid. Beyond filling values, missingness itself is often a feature, and naive imputation is a classic source of leakage. Applied AI interviews probe it because how you handle gaps quietly determines whether your model is biased before training even starts.📊 Evaluation & ML FoundationsSign in
