Machine Learning (ML)

Machine Learning for Competitive Exams 2025 – IBPS, RBI, UPSC, SSC Complete Guide
🤖 AI & Technology · Banking Exam 2025

Machine Learning Made Easy

Supervised · Unsupervised · Reinforcement Learning · Key Algorithms · Banking Applications · RBI MuleHunter · NPCI AI · India’s AI Mission · 50 MCQs — for IBPS PO, RBI Grade B, UPSC, SSC & all bank exams

IBPS PO/ClerkRBI Grade BSBI PO UPSC GS-IIISSC CGLNABARDBank Internal Exams
🤖

Foundation — Start HereWhat is Machine Learning?

Machine Learning (ML) is a branch of Artificial Intelligence (AI) that enables computers to learn automatically from data and improve their performance on tasks without being explicitly programmed for each task. Instead of writing rules manually, we feed data to the system and let it discover patterns on its own.

Data → ML Model → Prediction / Decision

⚡ Core Exam Facts
  • ML is a subset of AI — all ML is AI, but not all AI is ML
  • Term coined by Arthur Samuel (1959) — “the field that gives computers the ability to learn without being explicitly programmed”
  • ML ≠ AI ≠ Deep Learning — they form a nested hierarchy
  • Key requirement: Large, high-quality data — garbage in, garbage out
  • Output: Classification (categories), Regression (numbers), Clustering (groups), or Action (RL)
  • RBI, NPCI, banks all using ML for fraud detection, credit risk, AML/KYC
🎯

Most Asked DistinctionAI → ML → Deep Learning → GenAI Hierarchy

From Broad to Specific

🧠
Artificial Intelligence (AI)
Broadest concept — machines simulating human intelligence
Examples: Rule-based systems, search algorithms, expert systems, robots
📊
Machine Learning (ML)
Subset of AI — learns from data without being explicitly programmed
Examples: Credit scoring, fraud detection, loan default prediction
🔗
Deep Learning (DL)
Subset of ML — uses multi-layer neural networks; needs huge data
Examples: Face recognition, video KYC, voice authentication, image detection
Generative AI (GenAI)
Latest — DL models that CREATE new content (text, image, audio, code)
Examples: ChatGPT, Gemini, DALL·E, GitHub Copilot, Bard
FeatureAIMLDeep LearningGenAI
ScopeBroadestSubset of AISubset of MLSubset of DL
Data NeededVariesModerateVery largeMassive (terabytes)
Human effortHighMediumLowVery Low
OutputDecision/actionPrediction/groupComplex patternsNew content
Banking exampleChatbot rulesFraud scoreVideo KYCAI assistant
Key technologyLogic rulesStatistical modelsNeural networksTransformers (LLMs)
📚

Most Frequently Asked — All 3 TypesThree Types of Machine Learning

1️⃣

Supervised Learning

Labeled Data

Model trains on data with known correct answers (labels). Like a student studying with an answer key. Learns the mapping from input → output, then predicts on new unseen data.

Banking Use Cases
  • Loan default prediction (Yes/No)
  • Credit score calculation
  • Fraud transaction detection
  • Loan amount estimation
Linear RegressionLogistic Regression Decision TreeRandom ForestSVM
2️⃣

Unsupervised Learning

No Labels

No predefined correct answers. Model discovers hidden patterns, groups, or structures in unlabeled data on its own. Like a student sorting objects without instructions.

Banking Use Cases
  • Customer segmentation for marketing
  • Grouping suspicious AML transactions
  • Market basket analysis
  • Anomaly detection
K-Means ClusteringDBSCAN PCAApriori / Association Rules
3️⃣

Reinforcement Learning

Reward/Penalty

An agent learns by interacting with an environment — taking actions and receiving rewards (positive) or penalties (negative). Learns optimal strategy over time through trial and error.

Banking Use Cases
  • ATM cash optimisation
  • Robo-advisory investment suggestions
  • Dynamic pricing of financial products
  • Algorithmic trading
Q-LearningSARSA Policy GradientDeep Q-Network (DQN)
FeatureSupervisedUnsupervisedReinforcement
Data typeLabeled (with answers)Unlabeled (no answers)Reward signals from environment
OutputPrediction / ClassificationClusters / PatternsBest action / Policy
Human guidanceHigh (provides labels)Low (no labels needed)Low (defines reward only)
Memory trick“School with answer key”“Self-study, no answers”“Trial-and-error game”
Banking exampleCredit scoringCustomer segmentationATM cash optimization
Key algorithmLogistic RegressionK-MeansQ-Learning
⚙️

Know Which Does WhatKey ML Algorithms

Supervised

Linear Regression

Predicts continuous numerical values. Best for loan amount, interest rate prediction.

🏦 Loan amount estimation
Supervised

Logistic Regression

Predicts binary outcomes (Yes/No, 0/1). Most used classification algorithm in banking.

🏦 Loan default (Yes/No)
Supervised

Decision Tree

Tree-shaped model with if-then rules. Interpretable. Works for both classification and regression.

🏦 Risk profiling
Supervised — Ensemble

Random Forest

Combines many decision trees (ensemble method). Reduces overfitting. High accuracy.

🏦 Fraud detection
Supervised

SVM

Support Vector Machine — finds best boundary between classes. Good for text classification.

🏦 Email spam / phishing detection
Unsupervised

K-Means Clustering

Groups data into K clusters based on similarity. Most popular unsupervised algorithm.

🏦 Customer segmentation
Unsupervised

Association Rules (Apriori)

Finds items frequently bought/occurring together. “Market basket” analysis.

🏦 Cross-sell recommendations
Unsupervised

PCA

Principal Component Analysis — reduces data dimensions while preserving key information.

🏦 Feature reduction in models
Advanced / Deep Learning

Neural Network

Layers of connected nodes (neurons) mimicking the human brain. Foundation of deep learning.

🏦 Voice biometrics, NLP chatbots
Advanced / Deep Learning

CNN

Convolutional Neural Network — specialised for image/video data. Learns spatial patterns.

🏦 Video KYC, cheque reading
Advanced / Deep Learning

RNN / LSTM

Recurrent Neural Network — processes sequential/time-series data. LSTM handles long sequences.

🏦 Transaction sequence anomaly
Advanced / NLP

Transformer / LLM

Attention-based architecture powering ChatGPT, Gemini. Process and generate natural language.

🏦 AI banking assistants, GenAI
Supervised — Ensemble

XGBoost / Gradient Boosting

State-of-the-art ensemble method. Extremely accurate, widely used in competitions and banking.

🏦 Credit risk, default prediction
Supervised — Probabilistic

Naive Bayes

Based on Bayes’ Theorem. Assumes features are independent. Fast, simple, good baseline.

🏦 Spam / phishing classification
Unsupervised — Anomaly

Isolation Forest

Detects outliers/anomalies by isolating data points. Highly effective for fraud detection.

🏦 Real-time fraud flagging
🔄

Step-by-Step ProcessML Development Lifecycle

STEP 1
📊
Data Collection
Gather raw data from sources
STEP 2
🧹
Data Cleaning
Remove errors, handle nulls
STEP 3
🔧
Feature Engineering
Select & transform inputs
STEP 4
🎓
Model Training
Fit model on training data
STEP 5
📏
Model Evaluation
Test on unseen data
STEP 6
🚀
Deployment
Live production use
STEP 7
📡
Monitoring
Track & retrain model
🎯 Lifecycle — Exam Key Points
  • After data collection → first step is Data Cleaning / Preprocessing (NOT model training)
  • Training set = used to train the model | Test/Validation set = used to evaluate performance
  • Overfitting = model memorises training data, fails on new data (too complex)
  • Underfitting = model too simple, fails on both training and test data
  • Features = input variables (e.g., income, age, credit history)
  • Hyperparameters = settings chosen by user before training (e.g., learning rate, tree depth)
  • Model drift = performance degrades over time as data patterns change — needs retraining
🏦

Very High Exam Weight for Banking ExamsML Applications in Banking & Finance

🔍 Fraud Detection

Real-time scoring of every transaction. Flags patterns deviating from customer’s normal behavior (location, amount, time). Near real-time alerts and blocks.

Algorithm: Random Forest, Isolation Forest, Neural Network

📊 Credit Risk & Scoring

Predicts probability of loan default using income, credit history, employment, spending patterns. Automated loan approval/rejection decisions.

Algorithm: Logistic Regression, XGBoost, Decision Tree

🛡️ AML / Transaction Monitoring

Detects unusual transaction patterns, layering, structuring. Flags suspicious accounts for Anti-Money Laundering compliance. RBI’s MuleHunter.AI is a key example.

Algorithm: Unsupervised clustering + supervised classification

🆔 KYC & Video Verification

Automated document OCR and reading (Aadhaar, PAN). Face matching against documents. Liveness detection. Reduces manual KYC effort by 80%+.

Algorithm: CNN (Deep Learning) for facial recognition

💬 Chatbots & Virtual Assistants

24×7 customer service. Understands natural language queries. Examples: SBI’s SIA, HDFC’s EVA, Bank of Baroda’s Aditi, Axis Aha.

Algorithm: NLP + Transformer models

🎯 Cross-sell Recommendations

Recommends relevant products (credit cards, insurance, SIPs, FDs) to existing customers based on behavior, demographics, and transaction history.

Algorithm: Collaborative filtering, Association rules

⚠️ NPA Early Warning System

Predicts which loans are at risk of becoming NPAs months before default. Enables proactive recovery action. Used by major PSBs.

Algorithm: XGBoost, Random Forest

👤 Customer Segmentation

Groups customers by income, behavior, product usage, demographics. Enables targeted marketing, personalised banking, and product design.

Algorithm: K-Means Clustering (Unsupervised)

🔐 Behavioural Biometrics

Analyses typing speed, swipe patterns, device hold angle, mouse movements to continuously authenticate users without disrupting experience.

Algorithm: LSTM, One-class SVM

📉 Market Risk & Trading

Predicts price movements, portfolio risk, options pricing. Algorithmic trading uses RL agents to execute buy/sell decisions at optimal times.

Algorithm: LSTM for time-series, RL for trading

📋 SupTech / RegTech

RBI & regulators use ML to monitor bank data, detect compliance gaps, identify systemic risks. Reduces manual inspection burden significantly.

Algorithm: Anomaly detection, NLP for report analysis

🌐 UPI & Digital Payment Security

NPCI scores every UPI transaction in real time. Blocks suspicious transactions, prevents fraud, detects mule accounts. MuleHunter.AI by RBI.

Algorithm: Supervised ML + graph analytics
🇮🇳

Current Affairs — Very High 2025 Exam ProbabilityIndia’s AI & ML Initiatives in Finance

🇮🇳 Key Indian AI/ML Developments in Banking & Finance

MuleHunter.AI
RBI’s ML tool to detect mule bank accounts used in payment fraud
DPIP
Digital Payments Intelligence Platform — RBI’s AI-based payment fraud monitoring system
NPCI AI
NPCI uses ML for UPI fraud risk scoring and real-time transaction monitoring
IndiaAI Mission
₹10,372 crore govt. mission (2024) to build India’s AI ecosystem and compute infrastructure
Initiative / BodyAI/ML UseExam Relevance
RBI — MuleHunter.AIDetects mule accounts (accounts used to route stolen money) using supervised ML⭐⭐⭐⭐⭐
RBI — Digital Payments Intelligence Platform (DPIP)AI-powered platform to monitor digital payments ecosystem for fraud and compliance⭐⭐⭐⭐⭐
NPCIML for UPI fraud risk scoring; partnered with OpenAI + Razorpay for “Agentic Payments” pilot⭐⭐⭐⭐⭐
CBDC / Digital RupeeML used for transaction pattern analysis, AML compliance, and policy insights on e₹ usage⭐⭐⭐⭐
IndiaAI Mission (2024)₹10,372 crore mission — AI compute infrastructure, startup ecosystem, AI in governance⭐⭐⭐⭐⭐
SEBIML/AI for market surveillance, algo trading monitoring, fraud detection in capital markets⭐⭐⭐
SupTech / RegTechRBI using ML for supervisory analytics — analysing bank data for systemic risk indicators⭐⭐⭐⭐
RBI Responsible AI PanelRecommended “tolerant supervisory stance” — encourage AI innovation with strong safeguards⭐⭐⭐⭐
NPCI + OpenAI + Razorpay“Agentic Payments” pilot — AI agents that enable conversational UPI payments on ChatGPT⭐⭐⭐⭐
Banks — ChatbotsSBI SIA, HDFC EVA, BoB Aditi, Axis Aha, Canara Candi — NLP-powered 24×7 assistants⭐⭐⭐⭐
⚖️

Frequently Asked TogetherAdvantages & Limitations of ML

✅ Advantages
  • Faster and more accurate decision-making than manual methods
  • Handles massive datasets that humans cannot process
  • Continuously improves with more data
  • 24×7 operation without fatigue — fraud detection never sleeps
  • Detects subtle patterns invisible to human analysts
  • Reduces operational cost in banking significantly
  • Enables personalised experiences at scale
  • Consistent — no human bias in execution (when designed well)
❌ Limitations & Risks
  • Requires large, high-quality data — unavailable in many cases
  • High implementation cost and infrastructure requirement
  • Black-box problem — hard to explain decisions to customers/regulators
  • Algorithmic bias — if training data is biased, model is biased
  • Model drift — performance degrades as real-world patterns change
  • Vulnerable to adversarial attacks — hackers gaming the model
  • Privacy concerns — requires access to sensitive customer data
  • Regulatory compliance challenge — explainability mandated by regulators
📖

Definition QuestionsKey ML Terms Glossary

TermMeaningExam Tip
Training DataHistorical data used to teach the ML modelMore = better (usually)
Test/Validation DataSeparate data to evaluate model performanceNever used during training
FeatureInput variable used by the model (e.g., income, age)Also called “predictor variable”
Label / TargetOutput variable to be predicted (e.g., default: Yes/No)Supervised learning only
OverfittingModel too complex — memorises training data, fails on new dataHigh train accuracy, low test accuracy
UnderfittingModel too simple — poor on both training and test dataLow accuracy everywhere
HyperparameterUser-defined settings controlling model behavior (learning rate, depth)NOT learned from data
PrecisionOf all predicted positives, how many are actually positive?Important in fraud detection
Recall (Sensitivity)Of all actual positives, how many did model catch?Critical — missing fraud is costly
Confusion MatrixTable showing TP, FP, TN, FN for classification model evaluationUsed for classification only
Ensemble MethodCombining multiple models for better accuracy (e.g., Random Forest)Reduces overfitting
NLPNatural Language Processing — enables computers to understand human languageUsed in chatbots, document analysis
Model DriftGradual degradation of model performance as data patterns changeRequires periodic retraining
Explainable AI (XAI)ML techniques that make model decisions transparent and understandableRequired by RBI/regulators for credit decisions
Black BoxComplex ML model whose internal decision process is opaque/unexplainableRisk with deep learning models
Mule AccountBank account used unknowingly or knowingly to receive/transfer stolen moneyRBI MuleHunter.AI detects these
SupTechSupervisory Technology — ML/AI used by regulators to oversee financial institutionsRBI using SupTech for bank supervision
RegTechRegulatory Technology — ML used by banks to comply with regulations efficientlyAML, KYC, reporting automation
📝

Tap Any Option to Reveal AnswerMCQ Practice — 50 Questions (4 Chapters)

Score: 0 / 0
CH.1Basics of Machine LearningQ.01–Q.12
Q.01Basics🔥 Most Asked
Machine Learning (ML) is a subfield of which broader technology area?
✔ Correct: B
ML is a subset of Artificial Intelligence (AI). The hierarchy is: AI ⊃ ML ⊃ Deep Learning ⊃ Generative AI. All ML is AI, but not all AI is ML.
Q.02Types🔥 Most Asked
In supervised learning, the training data must have:
✔ Correct: B
Supervised learning requires labeled data — each training example has a known correct output (label). Like studying with an answer key. Examples: fraud/not-fraud, default/not-default.
Q.03Types🔥 Most Asked
Which type of ML works with unlabeled data to find hidden patterns or groups?
✔ Correct: B — Unsupervised Learning
Unsupervised learning has no labels — the model discovers patterns, clusters, or structures on its own. Banking example: customer segmentation, AML transaction grouping.
Q.04Types🔥 Most Asked
Reinforcement Learning is best described as learning through:
✔ Correct: A — Reward/Penalty signals
RL agents learn by trial and error — taking actions, receiving rewards for good actions, penalties for bad ones. Like a video game. Banking examples: ATM cash optimisation, robo-advisory.
Q.05Basics🔥 Most Asked
The biggest requirement for effective Machine Learning is:
✔ Correct: B — Large, good-quality data
ML performance depends entirely on the quantity and quality of training data. “Garbage in, garbage out” — biased or poor data produces biased/poor models.
Q.06Concepts🔥 Most Asked
“Overfitting” in ML means:
✔ Correct: B — Memorises training, fails on new data
Overfitting = model is too complex → high accuracy on training data but poor on test data. Opposite is underfitting = model too simple, poor everywhere.
Q.07Lifecycle🔥 Most Asked
In the ML lifecycle, which step comes IMMEDIATELY after data collection?
✔ Correct: B — Data Cleaning/Preprocessing
After collecting raw data, the next step is always data cleaning — handling missing values, removing duplicates, dealing with outliers, and transforming features before training.
Q.08Hierarchy🔥 Most Asked
Deep Learning is different from general Machine Learning because it uses:
✔ Correct: A — Multi-layer neural networks
Deep Learning uses neural networks with many hidden layers. Used in banking for video KYC, voice biometrics, image recognition, and complex NLP tasks like chatbots.
Q.09Concepts
The data used to CHECK the performance of a trained ML model is called:
✔ Correct: B — Test/Validation set
Training data trains the model. Test/validation data is kept separate and used only to evaluate how well the trained model performs on unseen examples.
Q.10Basics🔥 Most Asked
The main goal of ML-based predictive models in banking is to:
✔ Correct: B — Data-driven decision support
ML is a decision-support tool — it enhances human decisions, doesn’t replace them entirely. In banking: faster loan approvals, better risk detection, personalised services.
Q.11Basics
Which of the following is NOT a typical application of ML in banks?
✔ Correct: C — Printing passbooks
Passbook printing is a physical process unrelated to ML. All other options — loan default prediction, fraud detection, and product recommendations — are core ML banking use cases.
Q.12Concepts
Hyperparameters in ML are:
✔ Correct: B
Hyperparameters are set by the user/data scientist BEFORE training (e.g., learning rate, number of trees, max depth). Regular model parameters (weights) are learned automatically from data.
CH.2Algorithms & Key ConceptsQ.13–Q.27
Q.13Algorithms🔥 Most Asked
Which ML algorithm is MOST suitable for predicting whether a loan will default (Yes/No)?
✔ Correct: B — Logistic Regression
Logistic Regression is the standard algorithm for binary classification — predicting one of two outcomes (Default/No Default, Fraud/Not Fraud). Linear Regression predicts continuous numbers like loan amount.
Q.14Algorithms🔥 Most Asked
K-Means is an example of which type of learning?
✔ Correct: B — Unsupervised
K-Means is a clustering algorithm — it groups data into K clusters without any labels. Most common use in banking: customer segmentation into groups like high-value, medium-value, at-risk.
Q.15Algorithms
Linear Regression is mainly used for predicting:
✔ Correct: B — Continuous numerical values
Linear Regression predicts a continuous/numerical output — e.g., predict a customer’s monthly income, estimated loan amount, or risk score. For Yes/No → use Logistic Regression.
Q.16Algorithms🔥 Most Asked
“Ensemble methods” like Random Forest improve accuracy by:
✔ Correct: B — Combining multiple models
Ensemble methods combine many weaker models (many decision trees in Random Forest) to produce a stronger, more accurate and robust model. Reduces overfitting compared to single trees.
Q.17Concepts🔥 Most Asked
Which term refers to important input fields like “Income”, “Age”, “Past Defaults” used by ML models?
✔ Correct: A — Features
Features (also called predictor variables, input variables, or independent variables) are the inputs that a model uses to make predictions. Feature engineering = selecting/transforming the right features is critical.
Q.18Concepts🔥 Most Asked
The main drawback of complex “black-box” ML models in banking is:
✔ Correct: C — Lack of interpretability (black-box problem)
When a bank rejects a loan using a deep learning model, it must explain why to the customer and regulator. Black-box models (neural networks) cannot easily explain their decisions — a major compliance risk.
Q.19Evaluation
Confusion Matrix is used to evaluate performance of which type of ML model?
✔ Correct: B — Classification models
A Confusion Matrix shows True Positives (TP), False Positives (FP), True Negatives (TN), False Negatives (FN) — used to derive metrics like Precision, Recall, F1-Score for classification tasks.
Q.20Evaluation🔥 Most Asked
In fraud detection, which metric is crucial because missing a fraud is very costly?
✔ Correct: B — Recall (Sensitivity)
Recall = of all ACTUAL frauds, what % did the model catch? High recall = few frauds missed. In fraud detection, missing a fraud (False Negative) is more costly than a false alarm (False Positive).
Q.21Algorithms
Naive Bayes classifier is based on which statistical concept?
✔ Correct: C — Bayes’ Theorem
Naive Bayes uses conditional probability from Bayes’ Theorem, assuming all features are independent of each other. Fast, simple, good for text classification (spam detection).
Q.22Algorithms🔥 Most Asked
Which algorithm can be used for BOTH classification AND regression problems using a tree structure?
✔ Correct: A — Decision Tree
Decision Trees work for both classification (Yes/No output) and regression (numerical output). Easy to interpret and visualise. Basis for Random Forest ensemble.
Q.23Concepts
A model that is too simple and fails to capture real patterns is said to have:
✔ Correct: B — Underfitting
Underfitting = model too simple → low accuracy on BOTH training and test data. Contrast: Overfitting = too complex → high train accuracy, low test accuracy.
Q.24Algorithms
NLP (Natural Language Processing) in banking chatbots helps computers to:
✔ Correct: B — Understand human language
NLP enables AI to process, understand, and generate human language. Bank chatbots (SBI SIA, HDFC EVA) use NLP + ML to answer customer queries 24×7 in natural language.
Q.25Concepts
Model Drift in ML refers to:
✔ Correct: B — Performance degradation over time
Model Drift happens when the statistical properties of data change over time (e.g., fraud patterns evolve), causing model performance to drop. Solution: periodic retraining and monitoring.
Q.26Terms🔥 Most Asked
Explainable AI (XAI) in banking is important because:
✔ Correct: B — Regulatory and customer transparency requirements
RBI mandates that banks must explain credit decisions to customers. XAI/Explainable AI provides transparency — especially important for loan rejection, credit limit decisions, and fraud flags.
Q.27Terms
SupTech (Supervisory Technology) using ML helps regulators to:
✔ Correct: B — Supervisory analytics
SupTech uses ML to help regulators (RBI, SEBI) supervise financial institutions more efficiently — detecting systemic risk, compliance failures, and anomalies in huge volumes of bank-reported data.
CH.3ML Applications in Banking & FinanceQ.28–Q.42
Q.28Banking🔥 Most Asked
ML-based credit scoring models in banks mainly help to:
✔ Correct: B — Probability of default estimation
ML credit scoring uses features like income, credit history, employment, existing loans to predict the probability of default. Higher score = lower risk = loan approved. Used by most modern banks.
Q.29Banking🔥 Most Asked
Which ML use case is MOST directly related to Anti-Money Laundering (AML) in banks?
✔ Correct: B — Unusual transaction pattern detection
ML identifies suspicious transaction patterns associated with money laundering (structuring, layering, smurfing). RBI’s MuleHunter.AI is India’s key AML tool using supervised ML.
Q.30Banking🔥 Most Asked
In credit card fraud detection, ML models primarily detect:
✔ Correct: B — Anomaly/behavioural deviation
Fraud detection ML models build a behavioural profile of each customer. Any transaction deviating significantly from normal patterns (new location, unusual time, high amount) is flagged as potentially fraudulent.
Q.31Banking🔥 Most Asked
For monitoring digital payment frauds in UPI and cards, ML-based systems work:
✔ Correct: B — Near real-time scoring
Real-time fraud scoring evaluates each UPI/card transaction within milliseconds. If the fraud score exceeds a threshold, the transaction is blocked or sent for step-up authentication (OTP). NPCI’s systems work this way.
Q.32Banking
In KYC and customer onboarding, ML is commonly used for:
✔ Correct: B — Automated document OCR + face matching
ML (specifically Deep Learning / CNN) powers e-KYC: reading Aadhaar/PAN via OCR, matching face with document photo, liveness detection. Reduces manual effort dramatically and enables instant account opening.
Q.33Banking
Customer segmentation models using K-Means in banks help to:
✔ Correct: B — Targeted segmentation
K-Means clustering groups customers into segments (high-value, medium-value, at-risk, etc.) without any predefined labels. Banks then tailor products, offers, and communication to each segment.
Q.34Banking
In loan portfolio management, ML mainly helps in:
✔ Correct: A — NPA prediction and early warnings
ML models score every loan account monthly to predict which are at risk of becoming NPAs months before actual default. Banks can then take proactive recovery action — a major use case for PSBs.
Q.35Banking
Behavioural biometrics for security uses ML to analyse:
✔ Correct: B — Behavioural patterns
Behavioural biometrics continuously authenticates users silently in the background by learning their unique typing rhythm, swipe style, device tilt angle, and other behavioural patterns using ML/LSTM models.
Q.36Banking
Chatbots like SBI’s SIA, HDFC’s EVA rely mainly on which technology combination?
✔ Correct: B — NLP + ML
Bank chatbots use NLP to understand customer questions and ML to generate appropriate responses. Examples: SBI SIA, HDFC EVA, BoB Aditi, Axis Aha!, Canara Candi — all NLP+ML powered.
Q.37Banking
Recommendation engines in banking apps suggest products using ML to:
✔ Correct: B — Personalised product recommendations
Recommendation engines use collaborative filtering or association rules to match customers with relevant products. A customer who recently got a salary raise might be offered a credit card or SIP.
Q.38Banking
ML-based risk models in banking help with which types of risk?
✔ Correct: A — Credit, market, and operational risk
ML helps across all three major banking risk categories: credit risk (default probability), market risk (price movements, VaR), and operational risk (fraud, system failures, process errors).
Q.39Banking
One major challenge when deploying ML in banking is:
✔ Correct: B — Regulatory compliance and data privacy
Key challenge: ML models in banking must comply with RBI’s AI governance guidelines, DPDP Act (data privacy), fairness requirements (no discrimination), and explainability mandates — not just accuracy.
Q.40Banking
In insurance, ML models are primarily used for:
✔ Correct: B — Risk pricing and fraud detection
In insurance: ML helps with actuarial pricing (personalised premiums based on actual risk profile) and claims fraud detection (spotting fraudulent claims patterns). Both reduce cost and improve efficiency.
Q.41Banking
For a regulatory reporting using SupTech, ML mainly helps regulators to:
✔ Correct: B — Supervisory data analytics
SupTech = Supervisory Technology. RBI uses ML to process massive amounts of bank-submitted data to detect compliance gaps, emerging systemic risk, and potential fraud — far faster than manual inspection.
Q.42Banking
A key regulatory expectation for banks using ML/AI models is to ensure:
✔ Correct: B — Responsible AI principles
RBI’s responsible AI/ML framework requires: Explainability (can explain decisions), Fairness (no algorithmic bias), Data privacy (DPDP Act compliance), Accountability (human oversight of model outputs).
CH.4India AI/ML — Recent Developments & Current AffairsQ.43–Q.50
Q.43India🔥 High 2025 Probability
NPCI uses AI/ML mainly for which purpose?
✔ Correct: C
NPCI (National Payments Corporation of India) uses ML for real-time UPI fraud risk scoring, anomaly detection, and mule account identification — protecting millions of UPI transactions every day.
Q.44India🔥 High 2025 Probability
RBI’s “MuleHunter.AI” is primarily used for:
✔ Correct: B
MuleHunter.AI is RBI’s supervised ML tool to identify mule accounts — bank accounts used to receive and route stolen money in payment frauds. It analyses transaction patterns across accounts to detect these enablers of fraud.
Q.45India🔥 High 2025 Probability
India’s IndiaAI Mission (2024) has a budget of approximately:
✔ Correct: C — ₹10,372 crore
India’s IndiaAI Mission was approved in 2024 with a budget of ₹10,372 crore. It aims to build AI compute infrastructure, foster AI startups, and integrate AI in governance. (Note: NQM = ₹6,003 crore; IndiaAI = ₹10,372 crore)
Q.46India🔥 High 2025 Probability
NPCI’s “Agentic Payments” pilot with OpenAI and Razorpay aims to enable:
✔ Correct: B — Conversational UPI payments via AI agents
Agentic Payments = users can browse products and pay via UPI inside a conversational AI interface (like ChatGPT) — the AI “agent” handles the entire payment journey. A major fintech development in 2024–25.
Q.47India
RBI’s Digital Payments Intelligence Platform (DPIP) aims to:
✔ Correct: B
RBI’s planned Digital Payments Intelligence Platform (DPIP) will use AI/ML to provide a real-time system-wide view of the digital payments ecosystem — detecting fraud, compliance gaps, and emerging risks at scale.
Q.48India
The RBI responsible AI panel recommended a “tolerant supervisory stance” to:
✔ Correct: B
The panel’s “tolerant supervisory stance” means regulators should encourage AI innovation while maintaining necessary safeguards — not stifle experimentation with zero-tolerance for any error.
Q.49India🔥 High 2025 Probability
India’s Central Bank Digital Currency (CBDC — Digital Rupee) can benefit from ML for:
✔ Correct: B
CBDC (e₹) generates real-time programmable transaction data. ML on this data can detect fraud, monitor AML compliance, analyse spending patterns, and give RBI rich monetary policy insights — a key advantage of digital currency over physical cash.
Q.50India🔥 Most Asked — Comprehensive
Which statement about AI/ML in Indian banking is MOST accurate?
✔ Correct: C
The correct view: ML augments (not replaces) human work in banking. Key roles: fraud detection, credit scoring, customer service, risk management. Both PSBs and private banks use ML. RBI actively promotes responsible AI with appropriate governance frameworks.

Last-Minute PrepQuick Revision Flash Cards

🤖 What is ML?

  • ML = subset of AI
  • Learns from data without explicit programming
  • Coined by Arthur Samuel (1959)
  • Needs large, high-quality data
  • AI ⊃ ML ⊃ Deep Learning ⊃ GenAI

📚 3 Types of ML

  • Supervised = Labeled data → Predict output
  • Unsupervised = No labels → Find patterns
  • Reinforcement = Reward/Penalty → Best action
  • Memory: School | Self-study | Trial game

⚙️ Key Algorithms

  • Logistic Regression → Loan default (Yes/No)
  • Linear Regression → Loan amount (number)
  • K-Means → Customer segmentation
  • Random Forest → Fraud detection
  • CNN → Video KYC, image
  • NLP/Transformer → Chatbots

🏦 Banking Applications

  • Fraud detection (real-time scoring)
  • Credit scoring (default probability)
  • AML / transaction monitoring
  • KYC automation (OCR + face match)
  • Chatbots (SIA, EVA, Aditi, Aha)
  • NPA early warning system

🇮🇳 India AI Initiatives

  • MuleHunter.AI = RBI, detects mule accounts
  • DPIP = RBI digital payments AI platform
  • IndiaAI Mission = ₹10,372 crore (2024)
  • NPCI = UPI fraud ML scoring
  • CBDC e₹ + ML = AML + policy insights

📖 Key Terms

  • Overfitting = memorises train, fails test
  • Underfitting = fails everywhere
  • Feature = input variable (income, age)
  • Recall = catching all actual frauds
  • Black box = unexplainable model
  • XAI = Explainable AI

⚖️ Pros & Cons

  • ✅ Faster decisions, 24×7 operation
  • ✅ Handles massive data volumes
  • ✅ Detects subtle fraud patterns
  • ❌ Black-box problem (no explainability)
  • ❌ Biased if data is biased
  • ❌ Data privacy / DPDP Act compliance

🎯 Exam Mnemonics

  • Supervised = “School with answer key”
  • Unsupervised = “Self-study, no answers”
  • Reinforcement = “Trial-and-error game”
  • K-Means = “K groups customers”
  • Random Forest = “Many trees → less error”
📌 Must-Know Keywords & Full Forms
ML / AI / DL / GenAI K-Means Logistic Regression Random Forest XGBoost NLP / CNN / LSTM MuleHunter.AI DPIP IndiaAI ₹10,372 Cr Overfitting Black Box Model Drift SupTech / RegTech XAI / Explainable AI