Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Bajaj Finserv Team. If you also belong to the team, you can get access from here

Bajaj Finserv Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Bajaj Finserv Data Scientist Interview Questions and Answers

Updated 6 Jan 2025

5 Interview questions

A Data Scientist was asked 6mo ago
Q. What detailed questions do you have about machine learning models?
Ans. 

Understanding machine learning models involves exploring their types, evaluation metrics, and deployment strategies.

  • Types of models: Supervised (e.g., regression, classification) and Unsupervised (e.g., clustering, dimensionality reduction).

  • Evaluation metrics: Accuracy, precision, recall, F1-score for classification; RMSE, MAE for regression.

  • Feature selection: Importance of selecting relevant features to improve m...

A Data Scientist was asked 12mo ago
Q. What is cross validation?
Ans. 

Cross validation is a technique used to assess the performance of a predictive model by splitting the data into training and testing sets multiple times.

  • Cross validation helps to evaluate how well a model generalizes to new data.

  • It involves splitting the data into k subsets, training the model on k-1 subsets, and testing it on the remaining subset.

  • Common types of cross validation include k-fold cross validation an...

Data Scientist Interview Questions Asked at Other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you fi ... read more
Q2. Special Sum of Array Problem Statement Given an array 'arr' conta ... read more
asked in Affine
Q3. You have a pandas dataframe with three columns filled with state ... read more
asked in Walmart
Q4. Describe the data you would analyze to solve cost and revenue opt ... read more
Q5. Clone a Linked List with Random Pointers Given a linked list wher ... read more
A Data Scientist was asked
Q. With 2 dependent and 6 independent variables available, which machine learning algorithm should we use?
Ans. 

Use a regression algorithm like linear regression or decision tree regression.

  • Consider using linear regression if the relationship between variables is linear.

  • Decision tree regression can handle non-linear relationships between variables.

  • Evaluate the performance of different algorithms using cross-validation.

  • Consider the interpretability of the model when choosing an algorithm.

A Data Scientist was asked
Q. 

Clone a Linked List with Random Pointers

Given a linked list where each node contains two pointers: one pointing to the next node and another random pointer that can point to any node within the list (or b...

Ans. 

Create a deep copy of a linked list with random pointers.

  • Iterate through the original linked list and create a new node for each node in the list.

  • Store the mapping of original nodes to new nodes in a hashmap to handle random pointers.

  • Update the random pointers of new nodes based on the mapping stored in the hashmap.

  • Return the head of the copied linked list.

A Data Scientist was asked
Q. 

Special Sum of Array Problem Statement

Given an array 'arr' containing single-digit integers, your task is to calculate the total sum of all its elements. However, the resulting sum must also be a single-d...

Ans. 

Calculate the total sum of array elements until a single-digit number is obtained by repeatedly summing digits.

  • Iterate through the array and calculate the sum of all elements.

  • If the sum is a single-digit number, return it. Otherwise, repeat the process of summing digits until a single-digit number is obtained.

  • Return the final single-digit sum.

Bajaj Finserv Data Scientist Interview Experiences

5 interviews found

Data Scientist Interview Questions & Answers

user image Vaibhav Diwakar Gavli

posted on 6 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

SQL & aptitude question

Round 2 - Coding Test 

1 coding question for 45 min

Round 3 - Technical 

(1 Question)

  • Q1. Detailed questing for machine learning model's.
  • Ans. 

    Understanding machine learning models involves exploring their types, evaluation metrics, and deployment strategies.

    • Types of models: Supervised (e.g., regression, classification) and Unsupervised (e.g., clustering, dimensionality reduction).

    • Evaluation metrics: Accuracy, precision, recall, F1-score for classification; RMSE, MAE for regression.

    • Feature selection: Importance of selecting relevant features to improve model ...

  • Answered by AI

Bajaj Finserv HR Interview Questions

212 questions and answers

Q. Tell me about your past internship experiences.
Q. Tell me about your skills.
Q. What relevant experience do you possess?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is cross validation ?
  • Ans. 

    Cross validation is a technique used to assess the performance of a predictive model by splitting the data into training and testing sets multiple times.

    • Cross validation helps to evaluate how well a model generalizes to new data.

    • It involves splitting the data into k subsets, training the model on k-1 subsets, and testing it on the remaining subset.

    • Common types of cross validation include k-fold cross validation and lea...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. In depth statistics and deep learning questions.
  • Q2. Machine Learning- 2 dependant and 6 independent variables are available, which algorithm we should use?
  • Ans. 

    Use a regression algorithm like linear regression or decision tree regression.

    • Consider using linear regression if the relationship between variables is linear.

    • Decision tree regression can handle non-linear relationships between variables.

    • Evaluate the performance of different algorithms using cross-validation.

    • Consider the interpretability of the model when choosing an algorithm.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

I appeared for an interview in May 2022.

Round 1 - Assignment 

Round duration - 60 Minutes
Round difficulty - Easy

Round 2 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

There were 10 MCQs ranging from Aptitude to Programming MCQs to basics of Data Science.
The coding question only the optimized solution was accepted

  • Q1. 

    Special Sum of Array Problem Statement

    Given an array 'arr' containing single-digit integers, your task is to calculate the total sum of all its elements. However, the resulting sum must also be a single-...

  • Ans. 

    Calculate the total sum of array elements until a single-digit number is obtained by repeatedly summing digits.

    • Iterate through the array and calculate the sum of all elements.

    • If the sum is a single-digit number, return it. Otherwise, repeat the process of summing digits until a single-digit number is obtained.

    • Return the final single-digit sum.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

The interview happened in the evening. It was an online video call.
The interviewer was very cooperative. I would say it was rather a discussion session between us.

  • Q1. 

    Clone a Linked List with Random Pointers

    Given a linked list where each node contains two pointers: one pointing to the next node and another random pointer that can point to any node within the list (or ...

  • Ans. 

    Create a deep copy of a linked list with random pointers.

    • Iterate through the original linked list and create a new node for each node in the list.

    • Store the mapping of original nodes to new nodes in a hashmap to handle random pointers.

    • Update the random pointers of new nodes based on the mapping stored in the hashmap.

    • Return the head of the copied linked list.

  • Answered by AI
Round 4 - HR 

Round duration - 10 Minutes
Round difficulty - Easy

It was late night
It was a telephonic call

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as Data Scientist in PuneEligibility criteriaAbove 8 CGPA. Only CSE, IT, ECE, EEE branches were allowed.Bajaj Finserv Ltd. interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPs, DBMS, Data Science Fundamentals, Personal ProjectsTime required to prepare for the interview - 6-8 monthsInterview preparation tips for other job seekers

Tip 1 : Start your preparation early. Start from the very basics before directly moving onto DSA. Get a grasp of the basics in each topic. Practice different varieties of questions from each topic. I would recommend at least 200 questions of DSA.
Tip 2 : Revise your projects before you attend any interview. This is extremely important. You must be able to clearly explain your project along with your role in the project in layman terms to the interviewer.
Tip 3 : Grind hard to achieve your goals but don't take much stress. There's a long way to go.

Application resume tips for other job seekers

Tip 1 : Never, I say never put false things or your friends project in your resume
Tip 2 : Make a 1 page resume. Make your resume in such a way that the interviewer must be able to see the things you want him to see in the very first scan.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Python test is taken

Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company with bad culture

Top trending discussions

View All
Interview Hub
3d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Bajaj Finserv?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between CNN and MLP
  • Ans. 

    CNN is used for image recognition while MLP is used for general classification tasks.

    • CNN uses convolutional layers to extract features from images while MLP uses fully connected layers.

    • CNN is better suited for tasks that require spatial understanding like object detection while MLP is better for tabular data.

    • CNN has fewer parameters than MLP due to weight sharing in convolutional layers.

    • CNN can handle input of varying ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up basic statistics . Also prepare atleast 2 , 3 ML algorithms for the interview.

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2020. There was 1 interview round.

Interview Questionnaire 

10 Questions

  • Q1. What is R square and how R square is different from Adjusted R square
  • Ans. 

    R square is a statistical measure that represents the proportion of the variance in the dependent variable explained by the independent variables.

    • R square is a value between 0 and 1, where 0 indicates that the independent variables do not explain any of the variance in the dependent variable, and 1 indicates that they explain all of it.

    • It is used to evaluate the goodness of fit of a regression model.

    • Adjusted R square t...

  • Answered by AI
  • Q2. Explain what do u understand by the team WOE and IV. What's the importance. Advantages and disadvantages
  • Ans. 

    WOE (Weight of Evidence) and IV (Information Value) are metrics used for feature selection and assessing predictive power in models.

    • WOE transforms categorical variables into continuous variables, making them more suitable for modeling.

    • IV quantifies the predictive power of a feature by measuring the separation between the good and bad outcomes.

    • For example, if a feature has an IV of 0.3, it indicates strong predictive po...

  • Answered by AI
  • Q3. What are variable reducing techniques
  • Ans. 

    Variable reducing techniques are methods used to identify and select the most relevant variables in a dataset.

    • Variable reducing techniques help in reducing the number of variables in a dataset.

    • These techniques aim to identify the most important variables that contribute significantly to the outcome.

    • Some common variable reducing techniques include feature selection, dimensionality reduction, and correlation analysis.

    • Fea...

  • Answered by AI
  • Q4. Which test is used in logistic regression to check the significance of the variable
  • Ans. 

    The Wald test is used in logistic regression to check the significance of the variable.

    • The Wald test calculates the ratio of the estimated coefficient to its standard error.

    • It follows a chi-square distribution with one degree of freedom.

    • A small p-value indicates that the variable is significant.

    • For example, in Python, the statsmodels library provides the Wald test in the summary of a logistic regression model.

  • Answered by AI
  • Q5. How to check multicollinearity in Logistic regression
  • Ans. 

    Multicollinearity in logistic regression can be checked using correlation matrix and variance inflation factor (VIF).

    • Calculate the correlation matrix of the independent variables and check for high correlation coefficients.

    • Calculate the VIF for each independent variable and check for values greater than 5 or 10.

    • Consider removing one of the highly correlated variables or variables with high VIF to address multicollinear...

  • Answered by AI
  • Q6. Difference between bagging and boosting
  • Ans. 

    Bagging and boosting are ensemble methods used in machine learning to improve model performance.

    • Bagging involves training multiple models on different subsets of the training data and then combining their predictions through averaging or voting.

    • Boosting involves iteratively training models on the same dataset, with each subsequent model focusing on the samples that were misclassified by the previous model.

    • Bagging reduc...

  • Answered by AI
  • Q7. Explain the logistics regression process
  • Ans. 

    Logistic regression is a statistical method used to analyze and model the relationship between a binary dependent variable and one or more independent variables.

    • It is a type of regression analysis used for predicting the outcome of a categorical dependent variable based on one or more predictor variables.

    • It uses a logistic function to model the probability of the dependent variable taking a particular value.

    • It is commo...

  • Answered by AI
  • Q8. Explain Gini coefficient
  • Ans. 

    Gini coefficient measures the inequality among values of a frequency distribution.

    • Gini coefficient ranges from 0 to 1, where 0 represents perfect equality and 1 represents perfect inequality.

    • It is commonly used to measure income inequality in a population.

    • A Gini coefficient of 0.4 or higher is considered to be a high level of inequality.

    • Gini coefficient can be calculated using the Lorenz curve, which plots the cumulati...

  • Answered by AI
  • Q9. Difference between chair and cart
  • Ans. 

    A chair is a piece of furniture used for sitting, while a cart is a vehicle used for transporting goods.

    • A chair typically has a backrest and armrests, while a cart does not.

    • A chair is designed for one person to sit on, while a cart can carry multiple items or people.

    • A chair is usually stationary, while a cart is mobile and can be pushed or pulled.

    • A chair is commonly found in homes, offices, and public spaces, while a c...

  • Answered by AI
  • Q10. How to check outliers in a variable, what treatment should you use to remove such outliers
  • Ans. 

    Outliers can be detected using statistical methods like box plots, z-score, and IQR. Treatment can be removal or transformation.

    • Use box plots to visualize outliers

    • Calculate z-score and remove data points with z-score greater than 3

    • Calculate IQR and remove data points outside 1.5*IQR

    • Transform data using log or square root to reduce the impact of outliers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain the concept properly, if not able to explain properly then take a pause and try again with some examples. Be confident.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Projects and Data Science concepts
Round 3 - Technical 

(1 Question)

  • Q1. Python and coding skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through with concepts - ML, stats, NLP

Interview Questionnaire 

3 Questions

  • Q1. Mainly resume based. In detail from the project.
  • Q2. Softmax vs sigmoid
  • Ans. 

    Softmax and sigmoid are both activation functions used in neural networks.

    • Softmax is used for multi-class classification problems, while sigmoid is used for binary classification problems.

    • Softmax outputs a probability distribution over the classes, while sigmoid outputs a probability for a single class.

    • Softmax ensures that the sum of the probabilities of all classes is 1, while sigmoid does not.

    • Softmax is more sensitiv...

  • Answered by AI
  • Q3. Logistics regression (multiclass)

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the projects mentioned in your resume very well

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Describe Rag and the steps in brief detail?
  • Q2. Explain hinge loss in SVM
  • Ans. 

    Hinge loss is a loss function used in SVM to maximize the margin between classes while penalizing misclassifications.

    • Hinge loss is defined as max(0, 1 - y * f(x)), where y is the true label and f(x) is the predicted score.

    • It penalizes predictions that are on the wrong side of the margin, encouraging correct classifications with a margin.

    • For example, if y = 1 and f(x) = 0.5, hinge loss = max(0, 1 - 1 * 0.5) = 0.5.

    • If y =...

  • Answered by AI

Bajaj Finserv Interview FAQs

How many rounds are there in Bajaj Finserv Data Scientist interview?
Bajaj Finserv interview process usually has 2 rounds. The most common rounds in the Bajaj Finserv interview process are Coding Test, One-on-one Round and HR.
How to prepare for Bajaj Finserv Data Scientist interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Bajaj Finserv. The most common topics and skills that interviewers at Bajaj Finserv expect are Machine Learning, Python, Artificial Intelligence, Data Science and Deep Learning.
What are the top questions asked in Bajaj Finserv Data Scientist interview?

Some of the top questions asked at the Bajaj Finserv Data Scientist interview -

  1. Machine Learning- 2 dependant and 6 independent variables are available, which ...read more
  2. Detailed questing for machine learning model...read more
  3. What is cross validatio...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Bajaj Finserv Data Scientist Salary
based on 88 salaries
₹9.7 L/yr - ₹17 L/yr
21% less than the average Data Scientist Salary in India
View more details

Bajaj Finserv Data Scientist Reviews and Ratings

based on 16 reviews

2.7/5

Rating in categories

2.5

Skill development

2.0

Work-life balance

3.0

Salary

3.8

Job security

2.2

Company culture

2.2

Promotions

2.0

Work satisfaction

Explore 16 Reviews and Ratings
Sales Officer
1.3k salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Assistant Manager
1.3k salaries
unlock blur

₹2.6 L/yr - ₹6.6 L/yr

Sales Executive
1.2k salaries
unlock blur

₹1.5 L/yr - ₹4.3 L/yr

Sales Manager
1.1k salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Manager
949 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Explore more salaries
Compare Bajaj Finserv with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare
write
Share an Interview