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

Filter interviews by

EXL Service ETL Developer Interview Questions, Process, and Tips

Updated 4 Jun 2021

EXL Service ETL Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1) Explain about your project
  • Q2. 2) for each loop container
  • Ans. 

    For Each Loop Container is used to iterate through a set of objects or files in SSIS packages.

    • Used to perform repetitive tasks on a set of objects or files

    • Can be used to loop through files in a directory or rows in a table

    • Requires a data source and a variable to store the current object or file

    • Can be configured to run in parallel or sequentially

  • Answered by AI
  • Q3. 3) SCD Type 2 dimension used in your old project
  • Ans. 

    SCD Type 2 is used to maintain historical data in a dimension table.

    • SCD Type 2 is used to track changes in dimension attributes over time.

    • It creates a new record for each change and maintains a history of all changes.

    • It includes additional columns like start date, end date, and version number.

    • Example: Employee table with changes in job title, salary, and department over time.

    • It helps in analyzing trends and making info

  • Answered by AI
  • Q4. 4) joins in SQL
  • Ans. 

    Joins are used in SQL to combine data from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables.

    • Common types of joins are inner join, left join, right join, and full outer join.

    • Joins are performed using the JOIN keyword and specifying the tables to join and the columns to join on.

    • Joins can be used to filter data based on a related column.

    • Joins can also be used to combine dat

  • Answered by AI
  • Q5. 5) different between truncate, delete and drop
  • Ans. 

    Difference between truncate, delete and drop

    • Truncate removes all data from a table but keeps the structure

    • Delete removes specific rows from a table

    • Drop removes the entire table and its structure

    • Truncate and drop cannot be rolled back, but delete can be

    • Truncate is faster than delete as it does not log individual row deletions

  • Answered by AI
  • Q6. 6) what is Normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a table into smaller tables to reduce redundancy.

    • It helps to avoid data inconsistencies and anomalies.

    • Normalization is achieved through a series of normal forms, such as first normal form (1NF), second normal form (2NF), and so on.

    • Each normal form has specific rules that mus...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared at SQL, SSIS basics and project flow

Skills evaluated in this interview

Interview questions from similar companies

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

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java, JavaScript, and SQL.

    • 5 years of experience in software development

    • Proficient in Java, JavaScript, and SQL

    • Developed web applications for various clients

    • Strong problem-solving skills

    • Excellent team player

  • Answered by AI
  • Q2. What is your roles and responsibilities
  • Ans. 

    As a Software Developer, my roles and responsibilities include designing, developing, testing, and maintaining software applications.

    • Designing and developing software applications based on client requirements

    • Testing and debugging code to ensure functionality and performance

    • Collaborating with team members to brainstorm and implement new features

    • Maintaining and updating existing software applications

    • Staying up-to-date wi

  • Answered by AI
  • Q3. Explain about bug lifecycle
  • Ans. 

    Bug lifecycle involves identification, reporting, fixing, retesting, and closing of software bugs.

    • Identification: Bug is identified by testers or users through testing or real-world usage.

    • Reporting: Bug is reported to developers with detailed information like steps to reproduce.

    • Fixing: Developers analyze and fix the bug in the code.

    • Retesting: Testers verify the fix to ensure the bug is resolved.

    • Closing: Bug is closed o

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Case study with the topic provided
  • Q2. Questions on the resume

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Given the start and end times of the meetings, how can you determine if you are able to attend all of them?
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 Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Uikit explaination
  • Q2. Model classes with uikit
  • Ans. 

    Model classes in UIKit are used to represent data in an application's user interface.

    • Model classes in UIKit typically subclass NSObject and are used to store and manage data for views.

    • They can include properties to represent different data fields, methods to manipulate the data, and sometimes protocols for delegation.

    • For example, a model class for a user profile in a social media app might have properties like username...

  • Answered by AI
Round 2 - Coding Test 

Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude Test + Technical Questions + One Coding Question

Round 2 - Technical 

(2 Questions)

  • Q1. Detect the loop in a Singly linked list
  • Ans. 

    Detect loop in a singly linked list

    • Use two pointers, one moving one step at a time and the other moving two steps at a time

    • If there is a loop, the two pointers will eventually meet

    • If any of the pointers reach the end of the list, there is no loop

  • Answered by AI
  • Q2. 2 Sum (find a pair of numbers that sums up to a target)
  • Ans. 

    The 2 Sum problem involves finding a pair of numbers in an array that adds up to a given target.

    • Use a hash table to store the complement of each number as you iterate through the array.

    • Check if the current number's complement exists in the hash table.

    • If found, return the indices of the two numbers.

    • If no pair is found, return an empty array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Then there was a GD
Followed by Technical Interview Round 1 and Round 2

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Apt + coding questions, medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. Basics qs on oops and known programming language
Round 3 - Technical 

(1 Question)

  • Q1. In-depth of oops and live coding questions
Round 4 - HR 

(1 Question)

  • Q1. Basics qs like y and what
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical and reasoning, Maths

Round 2 - Coding Test 

Basic coding Java & C

Round 3 - Technical 

(2 Questions)

  • Q1. Array and types
  • Q2. Inheritance & OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - For fresher, Prepare basics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Mar 2022. 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 - Aptitude Test 

Basic coding questions And logical questions

Round 3 - Coding Test 

Simple program for mathematics

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn basic coding in python for Fibonacci series and inverse or a string and all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Shallow copy and deep copy
  • Q2. What is Pure component
  • Ans. 

    A Pure component is a component in React that does not have any state or lifecycle methods, resulting in improved performance.

    • Pure components are used to prevent unnecessary re-renders in React applications.

    • Pure components implement shouldComponentUpdate method with shallow comparison of props and state.

    • Examples of Pure components include functional components and class components that extend PureComponent class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve the knowledge of javascript basics and for react developer role, focus on coding side.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Qunatative, Reasoning, Blood Relation

Round 3 - Technical 

(1 Question)

  • Q1. CS fundamentals, DSA
Round 4 - HR 

(1 Question)

  • Q1. Behavioural Questions only

EXL Service Interview FAQs

How to prepare for EXL Service ETL Developer 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 ETL, AWS, Python, SQL and Algorithms.
What are the top questions asked in EXL Service ETL Developer interview?

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

  1. 3) SCD Type 2 dimension used in your old proj...read more
  2. 5) different between truncate, delete and d...read more
  3. 6) what is Normalizat...read more

Tell us how to improve this page.

ETL Developer Interview Questions from Similar Companies

View all
EXL Service ETL Developer Salary
based on 7 salaries
₹7.5 L/yr - ₹15 L/yr
48% more than the average ETL Developer Salary in India
View more details
Senior Executive
4.3k salaries
unlock blur

₹1 L/yr - ₹7.1 L/yr

Assistant Manager
3k salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Senior Associate
2.4k salaries
unlock blur

₹1.2 L/yr - ₹8 L/yr

Lead Assistant Manager
1.9k salaries
unlock blur

₹6.3 L/yr - ₹22 L/yr

Executive
1.7k salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

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