Upload Button Icon Add office photos

Exl India

Compare button icon Compare button icon Compare

Filter interviews by

Exl India AI Engineer Interview Questions and Answers

Updated 15 Mar 2024

Exl India AI Engineer Interview Experiences

1 interview found

AI Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Mar 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How do you sort a list in Python?
  • Ans. 

    You can sort a list in Python using the built-in sort() method or the sorted() function.

    • Use the sort() method to sort the list in place.

    • Use the sorted() function to return a new sorted list without modifying the original list.

    • You can specify the reverse parameter as True to sort in descending order.

    • Example: list = [3, 1, 4, 1, 5, 9, 2]; list.sort(); sorted_list = sorted(list)

  • Answered by AI
  • Q2. What are the steps for RAG system?
  • Ans. 

    RAG system is a project management tool used to track risks, assumptions, and issues.

    • Identify and document risks, assumptions, and issues related to the project.

    • Assign a RAG status (Red, Amber, Green) to each item based on severity and impact.

    • Regularly review and update the RAG status of each item as the project progresses.

    • Use the RAG system to prioritize and address high-risk items first.

    • Communicate the RAG status to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic programming and resume projects

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Hirist and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Csharp basics and a coding questing was given to implement
  • Q2. .net and angular basics questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked deeply about my resume and technologies
  • Q2. Coding question to sort a given array using DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - No response from HR
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Sorting algorithms
Round 2 - One-on-one 

(1 Question)

  • Q1. Detailed project diacussion
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. How to use vernier calliper
  • Ans. 

    Vernier caliper is a precision measuring tool used to measure dimensions with high accuracy.

    • Ensure the jaws are clean and properly aligned before use

    • Close the jaws and adjust the main scale to zero

    • Open the jaws and place the object to be measured between them

    • Close the jaws gently to ensure a snug fit and read the measurement on the vernier scale

    • Take the measurement from the point where the zero on the vernier scale ali...

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. There questions were on java mainly focusing on oops concept followed my exception handling concept
  • Q2. What is checked and unchecked exception demonstrate with an example
  • Ans. 

    Checked and unchecked exceptions are used in Java to handle errors. Checked exceptions must be handled, while unchecked exceptions do not.

    • Checked exceptions are checked at compile-time and must be handled using try-catch or throws keyword

    • Unchecked exceptions are not checked at compile-time and do not require handling

    • Example of checked exception: IOException

    • Example of unchecked exception: NullPointerException

  • Answered by AI
  • Q3. They asked questions on html
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy only if one knows java they can easily get in to this company

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2023.

Round 1 - Coding Test 

Basic algorithms testing

Round 2 - Technical 

(1 Question)

  • Q1. HLD question on chat application

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewers can be very rude at times, and can reject you without any reason. Though I got the offer, i declined because I have heard really had reviews about their current middle management. Join only if you are desperate and peace of mind doesn't matter to you.
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 Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to identify and solve race condition.
  • Ans. 

    Identifying and solving race conditions involves understanding concurrent execution and implementing synchronization mechanisms.

    • Understand the critical sections of code where race conditions can occur

    • Use synchronization mechanisms like locks, semaphores, or atomic operations to control access to shared resources

    • Implement thread-safe data structures or use thread-safe libraries to avoid race conditions

    • Use tools like sta...

  • Answered by AI
  • Q2. Solve an array question on finding the third largest in an unsorted array.
  • Ans. 

    Find the third largest element in an unsorted array of strings.

    • Sort the array in descending order.

    • Remove duplicates if necessary.

    • Return the element at index 2 as the third largest.

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Have you used multithreading?
  • Ans. 

    Yes, I have used multithreading in software development.

    • Multithreading is the ability of a central processing unit (CPU) to execute multiple threads concurrently.

    • It allows for parallel execution of tasks, improving performance and responsiveness in applications.

    • Multithreading can be used to perform tasks in the background while the main thread handles user interactions.

    • Examples of multithreading in software development...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview is not tough

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tree Ques : All node at a distance K from a given node
  • Ans. 

    Find all nodes at a distance K from a given node in a tree.

    • Use DFS to traverse the tree and mark the nodes at distance K from the given node.

    • Maintain a visited set to avoid revisiting nodes.

    • Use a queue to keep track of the nodes to be visited next.

    • If the given node is the root, traverse the entire tree and mark nodes at distance K.

    • If K is 0, return the given node itself.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do geeks for geeks medium/hard

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic string related coding questions
  • Q2. Core java questions

Exl India Interview FAQs

How many rounds are there in Exl India AI Engineer interview?
Exl India interview process usually has 1 rounds. The most common rounds in the Exl India interview process are Technical.
What are the top questions asked in Exl India AI Engineer interview?

Some of the top questions asked at the Exl India AI Engineer interview -

  1. How do you sort a list in Pyth...read more
  2. What are the steps for RAG syst...read more

Tell us how to improve this page.

Exl India AI Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
WNS Interview Questions
3.4
 • 980 Interviews
View all
Senior Executive
1.2k salaries
unlock blur

₹0.9 L/yr - ₹9.2 L/yr

Assistant Manager
936 salaries
unlock blur

₹3.5 L/yr - ₹13 L/yr

Executive
696 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Senior Associate
636 salaries
unlock blur

₹1.7 L/yr - ₹7.7 L/yr

Lead Assistant Manager
436 salaries
unlock blur

₹6.5 L/yr - ₹22 L/yr

Explore more salaries
Compare Exl India with

Genpact

3.8
Compare

WNS

3.4
Compare

TCS

3.7
Compare

Infosys

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview