Upload Button Icon Add office photos

Filter interviews by

Exl India Data Scientist Interview Questions and Answers

Updated 15 Nov 2024

Exl India Data Scientist Interview Experiences

5 interviews found

I applied via Recruitment Consulltant and was interviewed in Sep 2022. There were 5 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 

(2 Questions)

  • Q1. SQL pivots , window functions, there was one question related to duplicates removal.
  • Q2. Python Excel vlookups, pandas, numpy
Round 3 - Technical 

(1 Question)

  • Q1. Machine learning topics
Round 4 - Technical 

(1 Question)

  • Q1. Probability, statistics, aptitude questions
Round 5 - HR 

(1 Question)

  • Q1. Negotiations related to your package thats all

Interview Preparation Tips

Interview preparation tips for other job seekers - Show confidence. If you know 50% they ll take you.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Python coding test on DSA

Data Scientist Interview Questions Asked at Other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of le ... read more
Q2. for a data with 1000 samples and 700 dimensions, how would you fi ... read more
asked in Affine
Q3. you have a pandas dataframe with three columns, filled with state ... read more
Q4. Clone a Linked List with random pointersGiven a linked list havin ... read more
Q5. Technical QuestionGiven a API reference. You had to make a post r ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What projects you have done walk through
  • Q2. Explain self join

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL python and machine learning concept thoroughly
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Coding problem with python and sql join queries

Interview Preparation Tips

Interview preparation tips for other job seekers - practice coding problems python sql and basics of ML

Exl India interview questions for designations

 Senior Data Scientist

 (1)

 Senior Data Analyst

 (1)

 Data Analyst

 (3)

 Data Engineer

 (2)

 Consultant II

 (2)

 Tableau Developer

 (1)

I applied via Referral and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you calculate average salary in each company?
  • Q2. How do you calculate 3rd highest salary in each company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Questions are on clasification and random forest.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Group Discussion 

It was 45 min interview based on mathematical, probablity, statistical, machine leaning based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - What is probability of A, if AUB is 90% and B is 30%?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Gokhale Institute of Politics and Economics, Pune and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was on python ,SQL ,logical reasoning and quant

Round 2 - Group Discussion 

Case study was given on a business scenario

Round 3 - One-on-one 

(5 Questions)

  • Q1. Technical questions based on cv related to ML project And HR question
  • Q2. What is cross validation explain in layman term What is precision What is confusion Matrix draw with dummy data
  • Ans. 

    Cross validation is a technique to evaluate the performance of a model by splitting the data into multiple subsets.

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

    • It involves splitting the data into training and testing sets multiple times to get a more reliable estimate of model performance.

    • Common types of cross validation include k-fold cross validation and leave-one-out cross validation.

  • Answered by AI
  • Q3. Tell me a situation where your opinion came to help
  • Q4. Draw confusion Matrix on board
  • Ans. 

    Confusion Matrix is a table used to describe the performance of a classification model.

    • Confusion Matrix is a 2x2 table with Actual and Predicted values

    • It consists of True Positive, True Negative, False Positive, and False Negative

    • Example: TP=100, TN=50, FP=10, FN=5

    • Accuracy = (TP + TN) / (TP + TN + FP + FN)

    • Precision = TP / (TP + FP)

    • Recall = TP / (TP + FN)

  • Answered by AI
  • Q5. Project related questions - objective,reuslts

Interview Preparation Tips

Interview preparation tips for other job seekers - Know whatever you write in your cv be honest and humble

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Algorithms and Projects in depth
  • Q2. Math behind certain algorithms
Round 2 - Behavioral 

(1 Question)

  • Q1. Usual behavioral questions
Round 3 - One-on-one 

(1 Question)

  • Q1. One on one with director
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Group Discussion 

It was 45 min interview based on mathematical, probablity, statistical, machine leaning based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - What is probability of A, if AUB is 90% and B is 30%?

I applied via Campus Placement and was interviewed in Oct 2022. There were 4 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 - Aptitude Test 

It has SAS python SQL aptitude logic

Round 3 - Group Discussion 

Was given a case study on how should fedex should grow inorganic or organic

Round 4 - One-on-one 

(3 Questions)

  • Q1. Related to Machine learning and HR What is overfitting?
  • Q2. What is cross validation
  • Ans. 

    Cross validation is a technique used to evaluate the performance of a machine learning model by testing it on multiple subsets of the data.

    • It involves dividing the data into multiple subsets or folds.

    • The model is trained on a subset and tested on the remaining subset.

    • This process is repeated for all subsets and the results are averaged to get a final performance metric.

    • It helps to prevent overfitting and provides a mor...

  • Answered by AI
  • Q3. What is confusion matrix
  • Ans. 

    A confusion matrix is a table used to evaluate the performance of a classification model.

    • It shows the number of true positives, true negatives, false positives, and false negatives.

    • It helps in calculating various evaluation metrics like accuracy, precision, recall, and F1 score.

    • It is useful in comparing the performance of different models.

    • Example: A confusion matrix for a binary classification problem can be represente...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your CV well
Know the ML PARTS well
Also python

Skills evaluated in this interview

Exl India Interview FAQs

How many rounds are there in Exl India Data Scientist interview?
Exl India interview process usually has 1-2 rounds. The most common rounds in the Exl India interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Exl India 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 Exl India. The most common topics and skills that interviewers at Exl India expect are Analytics, Data Analytics, Data Management, Data Modeling and Data Science.
What are the top questions asked in Exl India Data Scientist interview?

Some of the top questions asked at the Exl India Data Scientist interview -

  1. SQL pivots , window functions, there was one question related to duplicates rem...read more
  2. Negotiations related to your package thats ...read more
  3. Probability, statistics, aptitude questi...read more

Tell us how to improve this page.

Exl India Data Scientist Interview Process

based on 3 interviews in last 1 year

Interview experience

4.3
  
Good

People are getting interviews through

based on 4 Exl India interviews
Job Portal
Referral
50%
25%
25% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Exl India Data Scientist Salary
based on 53 salaries
₹8.5 L/yr - ₹25 L/yr
18% more than the average Data Scientist Salary in India
View more details

Exl India Data Scientist Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

4.5

Skill development

5.0

Work-Life balance

3.5

Salary & Benefits

5.0

Job Security

5.0

Company culture

4.5

Promotions/Appraisal

4.5

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Executive
1.1k salaries
unlock blur

₹1.6 L/yr - ₹8.5 L/yr

Assistant Manager
912 salaries
unlock blur

₹3.5 L/yr - ₹14.5 L/yr

Executive
680 salaries
unlock blur

₹0.8 L/yr - ₹6 L/yr

Senior Associate
591 salaries
unlock blur

₹1.4 L/yr - ₹8.2 L/yr

Associate
405 salaries
unlock blur

₹1.2 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Exl India with

Genpact

3.9
Compare

WNS

3.4
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview