Q18.Marks: +2.0UGC NET Paper 2: Computer Science 2nd January 2026 Shift 1
Given below are two statements: one is labelled as Assertion A and the other is labelled as Reason R Assertion A: In supervised learning, the model is trained using labelled data. Reason R: Supervised learning algorithms find patterns in data to predict outcomes without any prior knowledge of the correct output.
In the light of the above statements, choose the most appropriate answer from the options given below
1.Both A and R are correct and R is the correct explanation of A
2.Both A and R are correct but R is NOT the correct explanation of A
3.A is correct but R is not correct✓ Correct
4.A is not correct but R is correct
Solution
The correct answer is A is correct but R is not correct.
Key Points
Assertion A: In supervised learning, the model is trained using labelled data. This statement is correct because supervised learning relies on labelled datasets, where the input data is paired with the corresponding output.
Reason R: Supervised learning algorithms find patterns in data to predict outcomes without any prior knowledge of the correct output. This statement is incorrect because supervised learning explicitly uses labelled data, meaning the correct output is already known during the training process.
Supervised learning involves training models using examples that include both input features and their associated correct outputs. The algorithm learns the mapping between inputs and outputs based on these labelled examples.
Examples of supervised learning techniques include regression and classification tasks, such as predicting house prices (regression) or identifying whether an image contains a cat or dog (classification).
The distinction between supervised and unsupervised learning lies in the use of labelled data; supervised learning requires labelled data, whereas unsupervised learning does not.
Additional Information
Supervised Learning Examples:
Classification: Identifying whether an email is spam or not spam.
Regression: Predicting the price of a car based on its features, such as mileage and year of manufacture.
Time Series Forecasting: Predicting stock prices based on historical data.
Key Components of Supervised Learning:
Labelled Dataset: Includes input-output pairs where the output is known for each input.
Training Process: The model learns to map inputs to outputs using labelled examples.
Evaluation: The model's performance is tested on unseen data to ensure accuracy and generalization.
Applications of Supervised Learning:
Image recognition and object detection in computer vision.
Natural language processing tasks, such as sentiment analysis and machine translation.
Medical diagnosis based on patient data.
Important Points:
Supervised learning algorithms require a significant amount of labelled data for effective training.
The quality of the labelled data directly impacts the model's performance.
Common supervised learning algorithms include decision trees, support vector machines, and neural networks.