Explore foundational concepts of machine learning, including types, workflows, and real-world applications—all in plain English for newcomers.
Which statement best describes the core idea of machine learning?
Explanation: Machine learning centers on computers learning from data to improve performance, rather than being strictly rule-based or restricted to preset instructions. Programming languages enable AI but are not the focus of machine learning itself. Not all computer processes involve machine learning, making the other options less accurate.
Which of these is a real-life example of machine learning in use?
Explanation: Word prediction on smartphones uses machine learning models trained on language data. Manual stopwatches, light switches, and mechanical clocks are examples of traditional, non-learning devices that follow fixed rules without adapting from data.
Which type of machine learning uses labeled data to make predictions or classifications?
Explanation: Supervised learning relies on labeled data for training. Unsupervised learning deals with unlabeled data. Reinforcement learning uses feedback through rewards and penalties. Transfer learning is a technique to use pre-trained models for new tasks, not a main type of learning.
What is the correct first step when building a machine learning model?
Explanation: Gathering data is the fundamental initial step before any cleaning, training, or deployment can occur. Deploying, training, and testing all depend on having relevant data available first, so those steps come after data collection.
Which algorithm is commonly used for classifying images as 'cat' or 'dog'?
Explanation: Support Vector Machines (SVM) excel at classification tasks like distinguishing cats from dogs in images. Linear regression is for predicting continuous values, PCA is for dimensionality reduction, and K-means is for clustering, making them less suitable for direct image classification.