Upload Button Icon Add office photos
Premium Employer

i

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

Hexaware Technologies Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 5.6k Reviews

Filter interviews by

Hexaware Technologies ETL Tester Interview Questions, Process, and Tips

Updated 11 Oct 2024

Top Hexaware Technologies ETL Tester Interview Questions and Answers

  • Q1. SQL Query to find such records which never ever contains flag 0 in critical column p1 1-1-21 1 p1 2-3-21 0 p2 3-2-21 0 p3 1-5-21 1 p3 1-5-21 1 p4 14-21 1
  • Q2. How to do validation between two integers Source 12345 2122434 54534535 5345353455 target 0000012345 0002122434 0054534535 5345353455
  • Q3. Suppose we have following column what will be output for inner join col1 col2 1 1 1 null null null 1 1 1 blank blank blank
View all 11 questions

Hexaware Technologies ETL Tester Interview Experiences

5 interviews found

ETL Tester Interview Questions & Answers

user image Subashini Packrisamy

posted on 1 Jul 2024

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

(2 Questions)

  • Q1. Common validation in etl testing
  • Ans. 

    Common validation techniques in ETL testing include data completeness, data accuracy, data transformation, and data quality checks.

    • Data completeness validation ensures that all expected data is loaded into the target system.

    • Data accuracy validation involves verifying that the data is correctly transformed and loaded without any errors.

    • Data transformation validation checks if the data is transformed according to the bus...

  • Answered by AI
  • Q2. Query to fetch 5th highest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to fetch 5th highest salary.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 1 OFFSET 4 to fetch the 5th highest salary

  • Answered by AI

Skills evaluated in this interview

ETL Tester Interview Questions & Answers

user image Anonymous

posted on 22 Jan 2024

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

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Tell me about yourself like roles and responsibilities.
  • Q2. SQL Query to find such records which never ever contains flag 0 in critical column p1 1-1-21 1 p1 2-3-21 0 p2 3-2-21 0 p3 1-5-21 1 p3 1-5-21 1 p4 14-21 1
  • Ans. 

    The SQL query to find records that never contain flag 0 in the critical column.

    • Use the NOT EXISTS operator to check if there are no records with flag 0 for each distinct value in the critical column.

    • Write a subquery to select distinct values from the critical column.

    • Join the main table with the subquery using the critical column.

    • Filter the result by checking if there are no records with flag 0 for each distinct value i

  • Answered by AI
  • Q3. How to do validation between two integers Source 12345 2122434 54534535 5345353455 target 0000012345 0002122434 0054534535 5345353455
  • Ans. 

    To validate between two integers, compare each corresponding digit and check if they are equal.

    • Convert both integers to strings

    • Pad the source integer with leading zeros to match the length of the target integer

    • Compare each digit of the source and target integers

    • If any digit is not equal, the validation fails

  • Answered by AI
  • Q4. Suppose we have a table which contains column name coutry & values are UK USA India Germany Spain We want India at first row and rest of records below it.
  • Q5. 1 2 3 . . . 100 we want 100 at first row & rest below it
  • Ans. 

    The question is asking to rearrange the numbers so that 100 is at the first row and the rest are below it.

    • Create an array of strings to store the numbers

    • Assign the value '100' to the first element of the array

    • Use a loop to assign the numbers 1 to 99 to the remaining elements of the array

  • Answered by AI
  • Q6. What is the difference between set & join?
  • Ans. 

    Set and join are operations used in database management systems.

    • Set is used to perform mathematical set operations like union, intersection, and difference on two or more sets.

    • Join is used to combine rows from two or more tables based on a related column between them.

    • Set operations do not require a common column, while join operations do.

    • Set operations return a result set with unique values, while join operations retur...

  • Answered by AI
  • Q7. Suppose we have following column what will be output for inner join col1 col2 1 1 1 null null null 1 1 1 blank blank blank
  • Ans. 

    The output for inner join will be the rows where both col1 and col2 have non-null values.

    • Inner join returns only the matching rows from both tables.

    • In this case, the output will be the rows with non-null values in both col1 and col2.

    • Rows with null or blank values in either col1 or col2 will be excluded from the output.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Hexaware Technologies ETL Tester interview:
  • SQL Queries

Skills evaluated in this interview

ETL Tester Interview Questions Asked at Other Companies

asked in Cognizant
Q1. If we have 200 staging tables, 40 dimensions tables and 20 facts ... read more
asked in Cognizant
Q2. 2.Difference between Union and union all,drop and Truncate,star s ... read more
Q3. What is the difference between Test Plan and Test strategy
asked in Cognizant
Q4. Which type of Validation you will do at Landing and staging area.
asked in Infosys
Q5. How do you get data integrity between source and destination, how ... read more

ETL Tester Interview Questions & Answers

user image Anonymous

posted on 11 Oct 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your project
  • Ans. 

    I worked on a data migration project for a retail company.

    • Migrated data from legacy systems to a new ETL platform

    • Ensured data integrity and accuracy during the migration process

    • Created test cases and executed them to validate the data migration

    • Collaborated with developers and business analysts to troubleshoot any issues

    • Provided regular updates to stakeholders on the progress of the project

  • Answered by AI
  • Q2. Sql queries from medium to hard.

Interview Preparation Tips

Interview preparation tips for other job seekers - As an etl tester , one should have good foundation in sql queries.

ETL Tester Interview Questions & Answers

user image Gayathri Latha

posted on 25 Feb 2024

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

(3 Questions)

  • Q1. What is Scalar function with example.
  • Ans. 

    Scalar function is a function that returns a single value based on input parameters.

    • Scalar functions are used in SQL to perform calculations on input values and return a single result.

    • They can be used in SELECT statements, WHERE clauses, and other SQL queries.

    • An example of a scalar function is the ABS() function, which returns the absolute value of a number.

  • Answered by AI
  • Q2. Query to fetch only numbers from alphanumeric data from a table.
  • Ans. 

    Use regular expressions to extract numbers from alphanumeric data in a table.

    • Use the REGEXP_REPLACE function in SQL to replace all non-numeric characters with an empty string.

    • For example, SELECT REGEXP_REPLACE(column_name, '[^0-9]', '') FROM table_name;

    • This will return only the numbers from the alphanumeric data in the specified column.

  • Answered by AI
  • Q3. Query to fetch data greater than average, min and max salary.
  • Ans. 

    Query to fetch data greater than average, min and max salary.

    • Calculate average, min, and max salary first

    • Use a SELECT statement with WHERE clause to filter data greater than average, min, and max salary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared on complex query and architecture of the your testing process.

Skills evaluated in this interview

Hexaware Technologies interview questions for designations

 ETL Test Engineer

 (1)

 Software Tester

 (3)

 Manual Tester

 (1)

 Automation Tester

 (1)

 Software Engineer Tester

 (1)

 Senior Software Tester

 (1)

 ETL Testing Engineer

 (1)

 Software Engineer

 (38)

ETL Tester Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. 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 data into smaller, more manageable parts.

    • It helps in reducing data redundancy by storing data in a structured manner.

    • Normalization ensures data integrity by avoiding anomalies like insertion, update, and deletion anomalies.

    • There are different normal forms such as 1NF, 2NF, 3...

  • Answered by AI
  • Q2. Snowflake and star

Get interview-ready with Top Hexaware Technologies Interview Questions

Interview questions from similar companies

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 - Technical 

(1 Question)

  • Q1. What is referential integrity
  • Ans. 

    Referential integrity ensures that relationships between tables are maintained in a database.

    • It ensures that foreign key values in one table match primary key values in another table.

    • It helps maintain consistency and accuracy of data in the database.

    • If a foreign key value is deleted or updated, the corresponding primary key value should also be updated or deleted to maintain integrity.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of schema
  • Ans. 

    Types of schema include star schema, snowflake schema, and fact constellation schema.

    • Star schema: central fact table connected to dimension tables in a star-like structure.

    • Snowflake schema: normalized form of star schema with dimension tables further normalized.

    • Fact constellation schema: multiple fact tables share dimension tables.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Current Project explanation, MDM process, ETL Transformation rules, Rank and dense rank, and SQL Questions on all the Joins
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain about yourself
  • Q2. What is exploratory testing and adhoc testing and how you used these in your project?
  • Ans. 

    Exploratory testing is a simultaneous learning, test design, and test execution approach. Adhoc testing is an informal testing approach without any predefined test cases.

    • Exploratory testing involves exploring the software, learning about it, and designing and executing tests on the fly.

    • Adhoc testing is unplanned and unstructured testing where testers randomly test the application without any specific test cases.

    • In my p...

  • Answered by AI
  • Q3. Roles and responsibilities in your previous projects
  • Q4. Difference between mobile and web testing?
  • Ans. 

    Mobile testing focuses on apps for smartphones and tablets, while web testing focuses on websites accessed through browsers.

    • Mobile testing involves testing apps on different devices and operating systems.

    • Web testing involves testing websites on different browsers and screen sizes.

    • Mobile testing includes testing for touch gestures and device-specific features.

    • Web testing includes testing for cross-browser compatibility ...

  • Answered by AI
  • Q5. Challenges faced in your last project?

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. PT and Scripting
Round 2 - Technical 

(1 Question)

  • Q1. About PT and PE
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial based questions
Round 4 - HR 

(1 Question)

  • Q1. HR based question, about location , salary negotiation etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and well versed with your concepts

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies ETL Tester interview?
Hexaware Technologies interview process usually has 1 rounds. The most common rounds in the Hexaware Technologies interview process are Technical.
How to prepare for Hexaware Technologies ETL Tester 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 Hexaware Technologies. The most common topics and skills that interviewers at Hexaware Technologies expect are ETL Testing, SQL Queries, SQL, DWH Testing and ETL.
What are the top questions asked in Hexaware Technologies ETL Tester interview?

Some of the top questions asked at the Hexaware Technologies ETL Tester interview -

  1. SQL Query to find such records which never ever contains flag 0 in critical col...read more
  2. How to do validation between two integers Source 12345 2122434 54534535 5345353...read more
  3. Suppose we have following column what will be output for inner join col1 col2...read more

Tell us how to improve this page.

Hexaware Technologies ETL Tester Interview Process

based on 5 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more

People are getting interviews through

based on 2 Hexaware Technologies interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Hexaware Technologies ETL Tester Salary
based on 92 salaries
₹3.9 L/yr - ₹11 L/yr
At par with the average ETL Tester Salary in India
View more details

Hexaware Technologies ETL Tester Reviews and Ratings

based on 4 reviews

4.7/5

Rating in categories

4.7

Skill development

4.4

Work-Life balance

4.4

Salary & Benefits

4.7

Job Security

4.4

Company culture

4.7

Promotions/Appraisal

4.4

Work Satisfaction

Explore 4 Reviews and Ratings
Senior Software Engineer
3.8k salaries
unlock blur

₹5.4 L/yr - ₹20 L/yr

System Analyst
3k salaries
unlock blur

₹6.8 L/yr - ₹29 L/yr

Software Engineer
2.9k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Senior Executive
2k salaries
unlock blur

₹0.8 L/yr - ₹6.2 L/yr

Technical Architect
1.9k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.8
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

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