Upload Button Icon Add office photos
Engaged Employer

i

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

EXL Service Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 6.7k Reviews

Filter interviews by

EXL Service Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top EXL Service Interview Questions and Answers

View all 338 questions

EXL Service Interview Experiences

Popular Designations

714 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2024

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Sort array in python
  • Ans. 

    Use the sorted() function to sort an array of strings in Python.

    • Use the sorted() function with the array as input to get a new sorted array.

    • You can use the reverse parameter to sort in descending order.

    • You can use the key parameter to specify a custom sorting key.

    • Example: sorted_array = sorted(array)

  • Answered by AI
  • Q2. Merge 2 arrays in python
  • Ans. 

    Use the concatenate function from numpy to merge two arrays in Python.

    • Import numpy library

    • Use np.concatenate() function to merge the arrays

    • Ensure both arrays have the same data type

  • Answered by AI
  • Q3. Sql to find 2nd highest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find 2nd highest salary

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 1,1 to skip the highest salary and get the second highest

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1

  • Answered by AI
  • Q4. Sql for running total
  • Ans. 

    Running total in SQL is achieved by using window functions like SUM() with OVER() clause.

    • Use SUM() function with OVER() clause to calculate running total.

    • Specify the window frame with ORDER BY in the OVER() clause.

    • Running total can be reset based on certain conditions using PARTITION BY in the OVER() clause.

  • Answered by AI

Skills evaluated in this interview

Top EXL Service Data Analyst Interview Questions and Answers

Q1. There is table which holds details of matches played between the countries in first 2 columns and who won the match in 3rd column. write a query to get no. of matches played by each team and no. of matches won by each team.
View answer (1)

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basics programing skills were covered

Round 2 - Technical 

(2 Questions)

  • Q1. About project experience
  • Q2. Python knowledge and experience around the same

Interview Preparation Tips

Interview preparation tips for other job seekers - Na

Service Engineer Interview Questions asked at other Companies

Q1. What are the compulsory policy excess in four wheeler private vehicles?
View answer (11)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was good test with great questions

Round 2 - Technical 

(2 Questions)

  • Q1. What do you know about transaction monitoring
  • Ans. 

    Transaction monitoring involves tracking and analyzing financial transactions to detect suspicious activities.

    • Transaction monitoring is a process used by financial institutions to identify and prevent money laundering, fraud, and other illegal activities.

    • It involves monitoring customer transactions in real-time or retrospectively to identify any unusual patterns or behaviors.

    • Automated transaction monitoring systems use...

  • Answered by AI
  • Q2. Have you worked with any fintech before
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations I Had
  • Q2. What was my previous experience

Skills evaluated in this interview

Senior Executive Operations Interview Questions asked at other Companies

Q1. In 1 day how many veh can be loaded and unloaded with dock man power count of 14.
View answer (5)

Executive Interview Questions & Answers

user image Anonymous

posted on 8 Jul 2024

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

(2 Questions)

  • Q1. How do you start your day?
  • Q2. Questions regarding your career
Round 2 - Aptitude Test 

English grammar, composition, fill in the blank

Round 3 - One-on-one 

(2 Questions)

  • Q1. What are your ambitions
  • Q2. Why did you choose this company

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is the key for every locked door!

Top EXL Service Executive Interview Questions and Answers

Q1. if you have knowledge of excel tell me difference between hlookup,vlookup and xlookup?
View answer (1)

Executive Interview Questions asked at other Companies

Q1. How will you start RS method Development for known drug product?
View answer (16)

EXL Service interview questions for popular designations

 Business Analyst

 (70)

 Consultant

 (52)

 Executive

 (37)

 Assistant Manager

 (33)

 Senior Associate

 (30)

 Senior Executive

 (26)

 Data Analyst

 (23)

 Associate

 (20)

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

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude , tech aptitude

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is overfitting
  • Q2. How to handle missing values

Top EXL Service Data Scientist Interview Questions and Answers

Q1. How would you measure model effectiveness without using any of confusion matrix metrics given the data is highly imbalanced
View answer (2)

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

Get interview-ready with Top EXL Service Interview Questions

Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Estimate the number of kgs of paneer used in Bangalore everyday
  • Ans. 

    It is difficult to estimate the exact number of kgs of paneer used in Bangalore everyday without specific data.

    • Estimate based on population size and consumption habits

    • Consider the number of restaurants, hotels, and households in Bangalore

    • Look at the average consumption of paneer per person in Bangalore

  • Answered by AI
  • Q2. Easy to medium sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well about guesstimates and SQL and whatever you have written in your resume.

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)

Jobs at EXL Service

View all

Manager Interview Questions & Answers

user image Anonymous

posted on 22 Jul 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Hello jfju ndjephdb fjgpdidngju djugobjusnvki
  • Q2. Ghrh w-fig kklekw ahfutpfh dheowh fjeiuwjf

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)

Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Majorly basic python coding using Numpy Pandas

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How is GIL and how python handle multi threading
  • Ans. 

    GIL stands for Global Interpreter Lock in Python, which limits execution of multiple threads at once.

    • GIL is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes at once.

    • Due to GIL, Python threads are not suitable for CPU-bound tasks but are still useful for I/O-bound tasks.

    • To handle multi-threading in Python, one can use multiprocessing module or asynchronous progr...

  • Answered by AI
  • Q2. Explain How React works under the hood.
  • Ans. 

    React uses a virtual DOM to efficiently update the actual DOM based on changes in state or props.

    • React creates a virtual DOM representation of the actual DOM.

    • When state or props change, React compares the virtual DOM with the actual DOM to determine the minimal set of changes needed.

    • React then updates the actual DOM efficiently to reflect the changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep understanding of technology you apply for

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Analyst Interview Questions & Answers

user image nitin patil

posted on 17 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Sql queries were asked based on joins

Interview Preparation Tips

Topics to prepare for EXL Service Analyst interview:
  • SQL
  • pythin

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)

EXL Service Interview FAQs

How many rounds are there in EXL Service interview?
EXL Service interview process usually has 2-3 rounds. The most common rounds in the EXL Service interview process are Technical, One-on-one Round and HR.
How to prepare for EXL Service 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 Service. The most common topics and skills that interviewers at EXL Service expect are SQL, Python, Excel, Analytical and Accounting.
What are the top questions asked in EXL Service interview?

Some of the top questions asked at the EXL Service interview -

  1. If I have 333 digits to number pages of a book, How many pages can I numbe...read more
  2. You have 20 red balls, 14 blue balls. You draw out balls, 2 at a time. If they ...read more
  3. You have 3 slices of bread, and a toaster. You can put in 2 slices of bread at ...read more
How long is the EXL Service interview process?

The duration of EXL Service interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

EXL Service Interview Process

based on 268 interviews in last 1 year

Interview experience

4
  
Good
View more

People are getting interviews through

based on 474 EXL Service interviews
Job Portal
Campus Placement
WalkIn
Referral
Company Website
Recruitment Consultant
29%
16%
15%
14%
4%
4%
18% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Cognizant Interview Questions
3.8
 • 5.4k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
WNS Interview Questions
3.4
 • 950 Interviews
View all

EXL Service Reviews and Ratings

based on 6.7k reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-Life balance

3.2

Salary & Benefits

4.0

Job Security

3.6

Company culture

3.0

Promotions/Appraisal

3.5

Work Satisfaction

Explore 6.7k Reviews and Ratings
Assistant Manager - HRBP

Pune,

Mumbai

4-8 Yrs

Not Disclosed

Lead Assistant Manager - Total Rewards

Noida,

Delhi/Ncr

7-12 Yrs

Not Disclosed

Explore more jobs
Senior Executive
4.3k salaries
unlock blur

₹1 L/yr - ₹7 L/yr

Assistant Manager
2.9k salaries
unlock blur

₹4 L/yr - ₹14.7 L/yr

Senior Associate
2.4k salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Lead Assistant Manager
2k salaries
unlock blur

₹6.3 L/yr - ₹22 L/yr

Associate
1.7k salaries
unlock blur

₹1 L/yr - ₹5.6 L/yr

Explore more salaries
Compare EXL Service 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