
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
You have a dataset with features such as location, size, number of bedrooms, and the corresponding house prices. You need to build a model to predict the price of a new house. Which approach fits best?
A
Unsupervised Learning
B
Reinforcement Learning
C
Supervised Learning (Regression)
D
Clustering
Explanation:
This is a supervised learning regression problem because:
Labeled Data: We have a dataset with features (location, size, number of bedrooms) and corresponding target values (house prices). This is the key characteristic of supervised learning.
Regression Task: The target variable (house price) is a continuous numerical value. Regression models predict continuous values, while classification models predict discrete categories.
Why not other options:
Real-world application: Predicting house prices based on features is a classic regression problem in machine learning, often solved using algorithms like linear regression, decision trees, or neural networks.
Correct Answer: C - Supervised Learning (Regression)