Heads up: opening this section reveals every question, every option, and the correct answer for this round. If you came here to play, scroll up and hit Play first.
Question 1: What is the primary goal of machine learning?
- To learn without explicit programming
- To program computers explicitly
- To store massive amounts of data
- To replace all human decision making
Answer: A. To learn without explicit programming
Explanation: Machine learning is a subfield of artificial intelligence that gives computers the ability to learn from data without being explicitly programmed for every specific task.
Question 2: Which learning type uses labeled data to train models?
- Reinforcement learning
- Unsupervised learning
- Feature engineering
- Supervised learning
Answer: D. Supervised learning
Explanation: In supervised learning, models are trained on labeled datasets, which allows the system to learn how to classify data or predict specific outcomes accurately.
Question 3: What is the main purpose of unsupervised learning?
- To discover hidden patterns or groupings
- To predict specific target labels
- To maximize cumulative rewards
- To perform explicit programming
Answer: A. To discover hidden patterns or groupings
Explanation: Unsupervised learning works with unlabeled data to identify hidden relationships, structures, or groupings, such as clustering similar items together without prior guidance.
Question 4: In reinforcement learning, what does an agent aim to maximize?
- Cumulative rewards
- The amount of raw data
- The speed of inference
- The number of labels
Answer: A. Cumulative rewards
Explanation: Reinforcement learning involves training agents to make sequential decisions by interacting with an environment and maximizing cumulative rewards through trial and error.
Question 5: What is an input variable used by a model to make predictions?
- A feature
- A reward
- A label
- An algorithm
Answer: A. A feature
Explanation: A feature is an input variable or independent variable that a machine learning model uses to learn relationships and generate predictions.
Question 6: What is the target value a model aims to predict called?
- An iteration
- A feature
- A convergence
- A label
Answer: D. A label
Explanation: The label is the output variable or target value that a machine learning model is designed to predict based on the provided input features.
Question 7: What defines the rules used by a model to learn from data?
- An algorithm
- A reward
- An inference
- A feature
Answer: A. An algorithm
Explanation: An algorithm is a set of rules or instructions that defines the learning process, enabling the model to identify patterns and make predictions from data.
Question 8: What term describes the percentage of correct model predictions?
- Accuracy
- Convergence
- Inference
- Underfitting
Answer: A. Accuracy
Explanation: Accuracy is a standard evaluation metric that represents the percentage of correct predictions made by a machine learning model against a test dataset.
Question 9: What happens when a model is too simple to capture data structure?
- Feature engineering
- Inference
- Convergence
- Underfitting
Answer: D. Underfitting
Explanation: Underfitting occurs when a model is too simple to capture the underlying structure of the data, which results in poor predictive performance.
Question 10: What is the phase where a trained model predicts live data?
- Inference
- Training
- Convergence
- Feature engineering
Answer: A. Inference
Explanation: Inference is the phase in the machine learning workflow where a previously trained model is used to predict values using new, live data.