Question 1
Which statement best describes how feature extraction differs between deep learning and classical machine learning?
A. Deep learning learns useful features automatically from raw data, whereas classical machine learning usually relies on features engineered by humans.Correct answer
Correct. Successive layers of a deep network build their own representations from raw input, while classical algorithms typically depend on a practitioner selecting and constructing informative features up front.
B. Classical machine learning discovers features automatically, while deep learning requires features to be hand-engineered first.
Exactly reverses the two approaches. Manual feature engineering is characteristic of classical machine learning; automatic feature learning is the hallmark of deep learning.
C. Neither approach uses features; both operate directly on raw bytes without any internal representation.
Denies the role of representations entirely. Both approaches predict from features — the difference is only whether a human or the model produces them.
D. Both approaches require an identical, manually specified feature set before training can begin.
Treats the two as interchangeable in workflow. Deep learning's main practical advantage on unstructured data is precisely that it removes the manual feature-specification step.
Explanation
A defining advantage of deep learning is representation learning: successive layers derive their own increasingly abstract features from raw input such as pixels or text, so no human feature-engineering step is required. Classical machine learning generally depends on a practitioner choosing and constructing the input features. Claiming the reverse, claiming both need the same manual feature set, or claiming neither uses features all miss where the automation actually sits.