Upload Button Icon Add office photos
Premium 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

Filter interviews by

EXL Service Interview Questions and Answers

Updated 26 Jun 2025
Popular Designations

329 Interview questions

A Data Analyst was asked 4d ago
Q. What is the SQL query to find the second highest salary?
Ans. 

Use SQL to retrieve the second highest salary from a salary table using various methods.

  • Use the DISTINCT keyword to filter unique salaries: `SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;`

  • Use a subquery to find the maximum salary that is less than the highest: `SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);`

  • Use the ROW_NUMBER() window function...

View all Data Analyst interview questions
A Lead Assistant Operations Manager was asked 1w ago
Q. What is the accrual concept?
Ans. 

The accrual concept recognizes revenues and expenses when they occur, regardless of cash flow timing.

  • Revenues are recorded when earned, not when cash is received. Example: A service provided in December is recorded in December, even if paid in January.

  • Expenses are recorded when incurred, not when paid. Example: A utility bill for December is recorded in December, even if paid in January.

  • This concept ensures financ...

View all Lead Assistant Operations Manager interview questions
A Lead Assistant Operations Manager was asked 1w ago
Q. What is the Golden Rule?
Ans. 

The Golden Rule is an ethical principle advocating treating others as one wishes to be treated.

  • Originates from various cultures and religions, emphasizing empathy.

  • Example: In business, treating employees with respect fosters loyalty.

  • In customer service, addressing clients' needs as you would want yours addressed enhances satisfaction.

  • Promotes a positive work environment, leading to better teamwork and collaboratio...

View all Lead Assistant Operations Manager interview questions
A Data Scientist was asked 1mo ago
Q. How would you train a sentence classification model?
Ans. 

Train a sentence classification model using labeled data, feature extraction, and machine learning algorithms.

  • Collect a labeled dataset of sentences with corresponding categories (e.g., positive, negative, neutral).

  • Preprocess the text data: tokenize, remove stop words, and apply stemming or lemmatization.

  • Convert sentences into numerical features using techniques like TF-IDF or word embeddings (e.g., Word2Vec, GloV...

View all Data Scientist interview questions

What people are saying about EXL Service

View All
a software engineer ii
1w
Can Cognizant move up my start date?
Got freed up from my current project sooner than expected. Now I have 25 days before joining Cognizant. HR isn't really responding. Anyone know if they can adjust the joining date if I ask? Any help is appreciated!
Got a question about EXL Service?
Ask anonymously on communities.
A Data Scientist was asked 1mo ago
Q. What is the difference between a normal LSTM and a bi-directional LSTM?
Ans. 

Normal LSTM processes data in one direction, while bi-directional LSTM processes data in both forward and backward directions.

  • Normal LSTM reads input sequences from start to end, capturing temporal dependencies in one direction.

  • Bi-directional LSTM consists of two LSTMs: one processes the input sequence forward, and the other processes it backward.

  • This dual processing allows bi-directional LSTMs to capture context ...

View all Data Scientist interview questions
A Data Scientist was asked 1mo ago
Q. Given a list of numbers, create a dictionary where the key is a unique value and the value of this key is the number of occurrences within the given list. Please share your screen and write Python code for ...
Ans. 

Create a dictionary from a list where keys are unique numbers and values are their counts.

  • Use Python's built-in collections module, specifically Counter, to simplify counting occurrences.

  • Example: For the list [1, 2, 2, 3], the output should be {1: 1, 2: 2, 3: 1}.

  • Alternatively, use a loop to iterate through the list and build the dictionary manually.

View all Data Scientist interview questions
A Data Scientist was asked 1mo ago
Q. Do you have knowledge of LangGraph or other libraries for AI agents?
Ans. 

LangGraph is a library for building AI agents that can understand and generate natural language.

  • LangGraph allows for the creation of conversational agents that can engage in dialogue.

  • It supports various natural language processing tasks, such as sentiment analysis and text summarization.

  • Example: Using LangGraph to build a chatbot that can answer customer queries in real-time.

  • The library integrates with machine lea...

View all Data Scientist interview questions
Are these interview questions helpful?
An Accounts Receivable Executive was asked 1mo ago
Q. What is Accounts Receivable (AR)?
Ans. 

Accounts Receivable (AR) refers to the money owed to a company by its customers for goods or services delivered.

  • AR represents outstanding invoices or payments due from customers.

  • It is a crucial part of a company's cash flow management.

  • For example, if a company sells products on credit, the amount owed by customers is recorded as AR.

  • Effective AR management helps in reducing the days sales outstanding (DSO).

  • Companie...

View all Accounts Receivable Executive interview questions
An Assistant Manager was asked 1mo ago
Q. What is the Order-to-Cash (OTC) cycle?
Ans. 

The Order-to-Cash cycle encompasses all steps from order placement to cash receipt in a business transaction.

  • 1. Order Placement: Customer places an order via various channels (e.g., online, phone).

  • 2. Order Processing: The order is confirmed, and inventory is checked for availability.

  • 3. Order Fulfillment: Products are picked, packed, and shipped to the customer.

  • 4. Invoicing: An invoice is generated and sent to the ...

View all Assistant Manager interview questions
An Assistant Manager was asked 1mo ago
Q. What is a Standard Operating Procedure (SOP), and what are the methods and reasons for preparing it?
Ans. 

A Standard Operating Procedure (SOP) is a set of step-by-step instructions to help workers carry out routine operations.

  • Consistency: SOPs ensure that tasks are performed consistently, reducing variability and errors. For example, a manufacturing SOP might detail the exact steps for operating machinery.

  • Quality Control: SOPs help maintain quality standards by providing clear guidelines. In a laboratory, an SOP might...

View all Assistant Manager interview questions

EXL Service Interview Experiences

802 interviews found

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

I applied via Naukri.com and was interviewed before Sep 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 - Technical 

(2 Questions)

  • Q1. What are joins in explain types with examples
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table

    • FULL JOIN...

  • Answered by AI
  • Q2. What is the diff between All and Allexcept
  • Ans. 

    All returns all values in a table, while Allexcept returns all values except those specified in the argument.

    • All returns all values in a column or table.

    • Allexcept returns all values in a column or table except those specified in the argument.

    • Example: All(Table[Column]) returns all values in the specified column.

    • Example: Allexcept(Table, Table[Column]) returns all values in the table except those in the specified column...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. What are differences between Append and merge
  • Ans. 

    Append adds new data to the end of a dataset, while merge combines two datasets based on a common key.

    • Append adds rows to the end of a dataset, while merge combines rows from two datasets based on a common key column.

    • Append is useful for adding new observations to an existing dataset, while merge is used to combine datasets with related information.

    • Append does not require a common key, while merge requires a common key...

  • Answered by AI
  • Q2. What are Data Gateways
  • Ans. 

    Data Gateways are software or hardware solutions that enable secure and efficient transfer of data between different systems or networks.

    • Data Gateways act as intermediaries between data sources and data destinations

    • They help in translating data formats, protocols, and security measures to ensure smooth data transfer

    • Examples include Amazon API Gateway, Microsoft Azure Data Gateway, and IBM DataPower Gateway

  • Answered by AI
  • Q3. What are Dynamic Row filter
  • Ans. 

    Dynamic Row filter is a feature that allows users to filter rows in a table based on certain criteria that can change dynamically.

    • Dynamic Row filter allows users to specify conditions for filtering rows in a table.

    • Users can set up dynamic filters that change based on user input or other factors.

    • For example, a dynamic row filter could be set up to only show rows where the value in a certain column is greater than a user...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Personality Questions

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 Apr 2025, where I was asked the following questions.

  • Q1. Introduce yourself
  • Ans. 

    Data scientist with a strong background in statistics, machine learning, and data visualization, passionate about solving complex problems.

    • Educational Background: Master's degree in Data Science from XYZ University.

    • Technical Skills: Proficient in Python, R, SQL, and machine learning libraries like TensorFlow and Scikit-learn.

    • Professional Experience: Worked at ABC Corp, where I developed predictive models that improved ...

  • Answered by AI
  • Q2. Tell me about RAG project which you have mentioned in your resume.
  • Q3. For what purpose are you using langchain in your RAG project?
  • Ans. 

    LangChain enhances RAG projects by streamlining data retrieval and processing for improved AI model performance.

    • Facilitates integration of various data sources, such as APIs and databases, for seamless information retrieval.

    • Enables efficient document processing and indexing, allowing for quick access to relevant data.

    • Supports the creation of custom pipelines for data transformation, enhancing the quality of input for A...

  • Answered by AI
  • Q4. Are you having knowledge of langgraph or other library for AI agents?
  • Ans. 

    LangGraph is a library for building AI agents that can understand and generate natural language.

    • LangGraph allows for the creation of conversational agents that can engage in dialogue.

    • It supports various natural language processing tasks, such as sentiment analysis and text summarization.

    • Example: Using LangGraph to build a chatbot that can answer customer queries in real-time.

    • The library integrates with machine learning...

  • Answered by AI
  • Q5. Can you tell me about models you have used for computer vision project?
  • Ans. 

    I have utilized various models like CNNs, transfer learning, and segmentation techniques for diverse computer vision projects.

    • Convolutional Neural Networks (CNNs) for image classification tasks, e.g., classifying images of animals.

    • Transfer learning with pre-trained models like VGG16 and ResNet for fine-tuning on specific datasets, such as facial recognition.

    • Object detection using YOLO (You Only Look Once) for real-time...

  • Answered by AI
  • Q6. What about deployment of Machine Learning and Deep Learning models?
  • Ans. 

    Deployment of ML/DL models involves integrating them into production systems for real-time predictions and decision-making.

    • Model Serving: Use frameworks like TensorFlow Serving or TorchServe to expose models as APIs.

    • Containerization: Deploy models using Docker to ensure consistency across environments.

    • Monitoring: Implement tools like Prometheus or Grafana to track model performance and data drift.

    • Scaling: Use cloud ser...

  • Answered by AI
  • Q7. How many teams are there within my office?
  • Q8. Why you are looking for job change?
  • Ans. 

    I'm seeking new challenges to grow my skills and contribute to innovative projects in a dynamic environment.

    • Desire for professional growth: I'm eager to expand my expertise in machine learning and data analysis.

    • Interest in innovative projects: I want to work on cutting-edge technologies, such as AI and big data solutions.

    • Cultural fit: I'm looking for a collaborative environment that values creativity and teamwork.

    • Caree...

  • Answered by AI
  • Q9. Why fine-tuning of models is required?
  • Ans. 

    Fine-tuning adjusts pre-trained models to improve performance on specific tasks or datasets.

    • Enhances model accuracy by adapting to specific data distributions.

    • Reduces overfitting by leveraging knowledge from pre-trained models.

    • Saves time and resources compared to training from scratch.

    • Example: Fine-tuning a language model for sentiment analysis on product reviews.

    • Allows for transfer learning, where knowledge from one d...

  • Answered by AI
  • Q10. Tell me about LSTM.
  • Ans. 

    LSTM (Long Short-Term Memory) is a type of recurrent neural network designed to learn long-term dependencies in sequential data.

    • LSTMs are used in natural language processing for tasks like language translation and sentiment analysis.

    • They can remember information for long periods, making them suitable for time series forecasting.

    • LSTMs mitigate the vanishing gradient problem common in traditional RNNs.

    • An example applicat...

  • Answered by AI
  • Q11. What is difference between Normal LSTM and bi-directional LSTM?
  • Ans. 

    Normal LSTM processes data in one direction, while bi-directional LSTM processes data in both forward and backward directions.

    • Normal LSTM reads input sequences from start to end, capturing temporal dependencies in one direction.

    • Bi-directional LSTM consists of two LSTMs: one processes the input sequence forward, and the other processes it backward.

    • This dual processing allows bi-directional LSTMs to capture context from ...

  • Answered by AI
  • Q12. How you will train sentence classification model?
  • Ans. 

    Train a sentence classification model using labeled data, feature extraction, and machine learning algorithms.

    • Collect a labeled dataset of sentences with corresponding categories (e.g., positive, negative, neutral).

    • Preprocess the text data: tokenize, remove stop words, and apply stemming or lemmatization.

    • Convert sentences into numerical features using techniques like TF-IDF or word embeddings (e.g., Word2Vec, GloVe).

    • Sp...

  • Answered by AI
  • Q13. Given a list of numbers, create dictionary where key is unique value and 'value of this key' is number of occurrences within the given list. Share your screen and write python code for this.
  • Ans. 

    Create a dictionary from a list where keys are unique numbers and values are their counts.

    • Use Python's built-in collections module, specifically Counter, to simplify counting occurrences.

    • Example: For the list [1, 2, 2, 3], the output should be {1: 1, 2: 2, 3: 1}.

    • Alternatively, use a loop to iterate through the list and build the dictionary manually.

  • Answered by AI
  • Q14. How to deal with imbalanced dataset?
  • Ans. 

    Imbalanced datasets can skew model performance; various techniques can help mitigate this issue.

    • Resampling techniques: Use oversampling (e.g., SMOTE) or undersampling to balance classes.

    • Use different evaluation metrics: Focus on precision, recall, and F1-score instead of accuracy.

    • Implement cost-sensitive learning: Assign higher misclassification costs to minority class instances.

    • Try ensemble methods: Techniques like Ra...

  • Answered by AI
  • Q15. What are your salary expectations, preferred location and notice period?
  • Ans. 

    I'm seeking a competitive salary, flexible location, and a notice period of two weeks.

    • Salary expectations: Based on market research, I expect a salary in the range of $90,000 to $120,000, depending on the role and responsibilities.

    • Preferred location: I am open to remote work but would prefer a hybrid model with occasional office visits in New York or San Francisco.

    • Notice period: I am currently employed and would need t...

  • Answered by AI
  • Q16. Sort a given list of numbers without using in-built sort function. Need to write python code.
  • Ans. 

    Implementing a sorting algorithm in Python to sort a list of numbers without using built-in functions.

    • Use the Bubble Sort algorithm: repeatedly swap adjacent elements if they are in the wrong order.

    • Example: For the list [5, 2, 9, 1], after one pass it becomes [2, 5, 1, 9].

    • Consider using the Selection Sort algorithm: find the minimum element and swap it with the first unsorted element.

    • Example: For the list [64, 25, 12, ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and well-prepared with the projects which you have mentioned in resume. Job description includes "Generative AI" experience in my case. So, you can prepare according to job description shared by the company.

Consultant Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2024

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic question on the tool I use in previous company and ask question on the components of it.
Round 2 - Technical 

(1 Question)

  • Q1. More on what is my role and managerial round.
Round 3 - Technical 

(1 Question)

  • Q1. 2 hour long interview with a panel of 4. Possibly every single question that can be asked and repeatedly same things. They tried understanding the process and functions elaborately way too much which was ...
Round 4 - Technical 

(1 Question)

  • Q1. Everything was already asked. But they need to drench and waste time of the candidate and themselves so they set up another round of technical to ask the same questions again and again.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't waste your time and energy with this company. They are not serious about hiring good candidates. They just want to know what their Peer banks are doing by setting up interviews with potential candidates. And after getting all the info they can take they will ghost you by not picking up your call or answering your mail.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - HR 

(1 Question)

  • Q1. About previous experience
Round 2 - Assignment 

About previous experience assignments

Round 3 - One-on-one 

(2 Questions)

  • Q1. About previous experience
  • Q2. Experience abut old company
  • Ans. 

    I gained valuable experience in operations management, enhancing efficiency and team collaboration at my previous company.

    • Led a team of 15 in streamlining daily operations, resulting in a 20% increase in productivity.

    • Implemented a new inventory management system that reduced stock discrepancies by 30%.

    • Conducted regular training sessions to improve team skills, which boosted employee satisfaction scores by 15%.

    • Collabora...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. About previous experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic Aptitude, time and distance, time and work, basic class 10 maths

Round 2 - One-on-one 

(2 Questions)

  • Q1. Guesstimate - detergent used in hospital in a day
  • Q2. Position of responsibility
  • Ans. 

    I have held multiple positions of responsibility in my previous roles, including leading project teams and managing client relationships.

    • Led a project team to successfully implement a new software system

    • Managed client relationships and ensured customer satisfaction

    • Served as a mentor to junior team members and provided guidance on complex projects

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Guestimate - flights in mumbai airport in a day
  • Ans. 

    Estimating daily flights at Mumbai Airport involves analyzing passenger traffic, flight schedules, and operational capacity.

    • Mumbai Airport (Chhatrapati Shivaji Maharaj International Airport) is one of the busiest in India.

    • Assume an average of 40-50 flights per hour during peak times.

    • If the airport operates for 24 hours, that could mean 960-1200 flights daily.

    • Consider both domestic and international flights, with a high...

  • Answered by AI
  • Q2. What is that makes you a suitable candidate and why EXL
  • Ans. 

    I am a suitable candidate for the Business analyst role at EXL due to my strong analytical skills, experience in data analysis, and ability to drive business insights.

    • I have a strong background in data analysis and have successfully implemented data-driven strategies in my previous roles.

    • I possess excellent analytical skills which enable me to interpret complex data and provide valuable insights for decision-making.

    • I h...

  • Answered by AI

Accountant Interview Questions & Answers

user image Anonymous

posted on 19 Dec 2024

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

(5 Questions)

  • Q1. What type account
  • Ans. 

    The type of account refers to the classification of accounts based on their nature and purpose.

    • There are five main types of accounts: assets, liabilities, equity, revenue, and expenses.

    • Assets are resources owned by the company, such as cash, inventory, and equipment.

    • Liabilities are obligations owed by the company, such as loans and accounts payable.

    • Equity represents the owner's stake in the business.

    • Revenue is the inco...

  • Answered by AI
  • Q2. What is bank reconciliation
  • Ans. 

    Bank reconciliation is the process of comparing and matching the balances in a company's accounting records with the balances on its bank statement.

    • Bank reconciliation helps ensure that all transactions are recorded accurately in the company's books.

    • It involves comparing the company's records of its bank account with the bank statement to identify any discrepancies.

    • Common reasons for discrepancies include outstanding c...

  • Answered by AI
  • Q3. Any five tangible Assets
  • Ans. 

    Tangible assets are physical assets that can be seen and touched.

    • Real estate

    • Machinery

    • Vehicles

    • Inventory

    • Furniture and fixtures

  • Answered by AI
  • Q4. What is current Assets
  • Ans. 

    Current assets are assets that are expected to be converted into cash or used up within one year.

    • Includes cash, accounts receivable, inventory, and prepaid expenses

    • Listed on the balance sheet under assets

    • Helps determine a company's liquidity and ability to pay off short-term obligations

  • Answered by AI
  • Q5. Gold rule of Accounting
  • Ans. 

    The gold rule of accounting states that debits must equal credits in every financial transaction.

    • Debits must always equal credits in accounting entries

    • It is the foundation of double-entry accounting

    • Helps ensure accuracy and balance in financial records

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Are you looking for advice on job searching, resume building, interview preparation, or something specific
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Journal entries and accounting concepts.

Round 2 - Technical 

(3 Questions)

  • Q1. Post Journal entry
  • Q2. Difference in concepts
  • Ans. 

    Difference between concepts

    • Concepts are abstract ideas while differences are distinctions between two or more things

    • Concepts are generalizations while differences are specific details

    • Examples: Concept of love vs. differences in love languages

  • Answered by AI
  • Q3. Profile related questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Accounting entries
  • Q2. Case situations

Interview Preparation Tips

Topics to prepare for EXL Service Senior Executive interview:
  • Accounting
  • Accounting principles
  • Financial Accounting
Interview preparation tips for other job seekers - Basic preparation and strong accounting concepts are enough to clear interview with confidence.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - Aptitude Test 

They asked various questions on guestimates and few SQL Questions

Round 2 - Technical 

(2 Questions)

  • Q1. They asked questions on spark, SQL and Python
  • Q2. They asked questions on ADF as well
Round 3 - Technical 

(2 Questions)

  • Q1. They majorly focused on PySpark and ADF in this round
  • Q2. They focused on the project also in this round
Round 4 - HR 

(1 Question)

  • Q1. They focused on managerial-related questions in this round
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

After your clearing first round they will provide you SHL assessment link. You have to complete within the time. It have 5 sections namely English Grammar, Reasoning, Maths, Assay writing, Typing test. Very easy level questions.

Round 2 - HR 

(5 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    Experienced Senior Executive Operations with a proven track record of optimizing processes and driving efficiency.

    • Over 10 years of experience in operations management

    • Successfully implemented cost-saving measures resulting in a 20% increase in profitability

    • Led cross-functional teams to streamline workflows and improve productivity

    • Strong background in strategic planning and project management

  • Answered by AI
  • Q2. Give me brief about your job role
  • Ans. 

    Overseeing daily operations, managing staff, ensuring efficiency and productivity.

    • Managing and coordinating daily operations

    • Supervising staff and ensuring they meet performance goals

    • Implementing strategies to improve efficiency and productivity

    • Monitoring and analyzing operational metrics

    • Collaborating with other departments to achieve organizational goals

  • Answered by AI
  • Q3. Willing to work in night shift?
  • Ans. 

    Yes, I am willing to work in night shifts as required for the role.

    • I am flexible with my working hours and understand the demands of the role.

    • I have previous experience working night shifts and can adapt to the schedule.

    • I prioritize the job requirements over personal preferences for working hours.

  • Answered by AI
  • Q4. Are you servicing notice period & what is your last working day?
  • Ans. 

    Yes, I am currently serving my notice period which ends on [last working day].

    • Yes, I am serving my notice period.

    • My last working day is [date].

  • Answered by AI
  • Q5. Very easy questions asked by HR. Be confident and provide real information.
Round 3 - One-on-one 

(8 Questions)

  • Q1. Introduce yourself?
  • Ans. 

    Experienced Senior Executive Operations with a proven track record of optimizing processes and driving efficiency.

    • Over 10 years of experience in operations management

    • Successfully implemented cost-saving initiatives resulting in 20% reduction in expenses

    • Led cross-functional teams to streamline workflow and improve productivity

  • Answered by AI
  • Q2. What is your last job role?
  • Ans. 

    I was the Director of Operations at a multinational technology company.

    • Led a team of 50+ employees in managing day-to-day operations

    • Implemented efficiency strategies to streamline processes and reduce costs

    • Collaborated with cross-functional teams to ensure smooth operations

    • Developed and monitored key performance indicators to track progress

    • Managed vendor relationships and negotiated contracts

  • Answered by AI
  • Q3. Why you left your company?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for career advancement

    • Limited opportunities for growth in previous company

    • Seeking new challenges and experiences

  • Answered by AI
  • Q4. Why you want to join EXL?
  • Ans. 

    I want to join EXL because of its reputation for innovation and growth in the industry.

    • Excited about the opportunity to work for a company known for its innovative solutions

    • Impressed by EXL's track record of growth and success in the industry

    • Looking forward to contributing my skills and experience to a dynamic and forward-thinking organization

  • Answered by AI
  • Q5. Why should we hire you?
  • Ans. 

    I have a proven track record of successfully leading operations teams, improving efficiency, and driving results.

    • Extensive experience in operations management

    • Strong leadership skills

    • Track record of improving efficiency and driving results

    • Ability to strategize and implement effective operational plans

  • Answered by AI
  • Q6. If you get better opportunity elsewhere, do you left EXL?
  • Ans. 

    I am committed to my current role at EXL and would only consider leaving if the new opportunity aligns with my career goals and values.

    • I am dedicated to my current role at EXL and would only consider leaving if the new opportunity offers significant growth potential.

    • I would carefully evaluate the new opportunity to ensure it aligns with my career goals and values before making a decision.

    • If the new opportunity provides...

  • Answered by AI
  • Q7. What is your last CTC & your expected CTC?
  • Ans. 

    My last CTC was $150,000 and my expected CTC is $180,000.

    • Last CTC: $150,000

    • Expected CTC: $180,000

  • Answered by AI
  • Q8. If we hire you, in how many days you can join us?
  • Ans. 

    I can join within 2 weeks of receiving the offer.

    • I will need to provide a 2-week notice to my current employer.

    • I may need some time to relocate if the position is in a different city.

    • I will need to finalize any pending projects before leaving my current job.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare this questions in advance. There is 30% hike on your previous salary, which fixed. If you expecting more then they will reject you.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. How do you feel basis your experience you would fit to this role?
  • Ans. 

    I bring a blend of leadership, strategic vision, and operational expertise to excel as Associate Vice President.

    • Proven track record in leading cross-functional teams to achieve organizational goals, such as increasing departmental efficiency by 20%.

    • Strong background in strategic planning, demonstrated by successfully launching a new product line that generated $5M in revenue within the first year.

    • Experience in stakehol...

  • Answered by AI
  • Q2. Tell us about your past experience
  • Q3. Some Technical accounting questions were asked my personal experience
  • Q4. Who all are there in your family
  • Q5. How comfortable are you with commuting to Noida
  • Ans. 

    I am very comfortable with commuting to Noida.

    • I have been commuting to Noida for the past 5 years and am familiar with the routes.

    • I am open to using public transportation or driving my own vehicle for the commute.

    • I have researched the commute times and am prepared for any potential delays.

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 6 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Python string is changable or not
  • Ans. 

    Python strings are immutable, meaning they cannot be changed once created.

    • Python strings are immutable, so any operation that appears to modify a string actually creates a new string object.

    • For example, when you use string concatenation or slicing, a new string is created instead of modifying the original string.

    • To modify a string in Python, you would need to create a new string with the desired changes.

  • Answered by AI
  • Q2. Sql window function ?
  • Q3. Difference between having and where cause
  • Q4. Sql union and union all
  • Q5. Python using remove duplicate value
  • Ans. 

    Use Python's set() function to remove duplicate values from an array of strings.

    • Convert the array to a set to automatically remove duplicates

    • Convert the set back to a list if needed

  • Answered by AI

Skills evaluated in this interview

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, HR and One-on-one Round.
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, Accounting and Analytical.
What are the top questions asked in EXL Service interview?

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

  1. Doors were numbered from 1-100 and first time I close all doors next I open doo...read more
  2. If I have 333 digits to number pages of a book, How many pages can I numbe...read more
  3. You have 20 red balls, 14 blue balls. You draw out balls, 2 at a time. If they ...read more
What are the most common questions asked in EXL Service HR round?

The most common HR questions asked in EXL Service interview are -

  1. What are your salary expectatio...read more
  2. Why are you looking for a chan...read more
  3. What are your strengths and weakness...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.

Overall Interview Experience Rating

4/5

based on 717 interview experiences

Difficulty level

Easy 19%
Moderate 77%
Hard 5%

Duration

Less than 2 weeks 75%
2-4 weeks 16%
4-6 weeks 5%
6-8 weeks 1%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

Mphasis Interview Questions
3.3
 • 843 Interviews
DXC Technology Interview Questions
3.7
 • 836 Interviews
Nagarro Interview Questions
4.0
 • 791 Interviews
NTT Data Interview Questions
3.8
 • 656 Interviews
Publicis Sapient Interview Questions
3.5
 • 642 Interviews
GlobalLogic Interview Questions
3.6
 • 627 Interviews
View all

EXL Service Reviews and Ratings

based on 7.7k reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.1

Salary

4.0

Job security

3.5

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 7.7k Reviews and Ratings
Technical Project Manager

Pune,

Bangalore / Bengaluru

+1

5-10 Yrs

Not Disclosed

Executive (HR documentation)

Pune

₹ 2.5-2.5 LPA

Explore more jobs
Senior Executive
4.5k salaries
unlock blur

₹0.9 L/yr - ₹7.5 L/yr

Assistant Manager
3.3k salaries
unlock blur

₹4.1 L/yr - ₹16 L/yr

Senior Associate
2.5k salaries
unlock blur

₹1 L/yr - ₹8.5 L/yr

Lead Assistant Manager
2.2k salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Executive
2k salaries
unlock blur

₹1 L/yr - ₹6.2 L/yr

Explore more salaries
Compare EXL Service with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Mphasis

3.3
Compare

Sutherland Global Services

3.5
Compare
write
Share an Interview