Upload Button Icon Add office photos

Filter interviews by

Accenture Senior ETL Tester Interview Questions and Answers

Updated 28 Aug 2024

Accenture Senior ETL Tester Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference b/w union and union all
  • Ans. 

    Union combines and removes duplicates, Union All combines all rows including duplicates.

    • Union removes duplicates while Union All includes duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Union requires sorting while Union All does not

  • Answered by AI
  • Q2. How to delete duplicates from a table
  • Ans. 

    To delete duplicates from a table, use a combination of SELECT DISTINCT and INSERT INTO new table.

    • Create a new table with the same structure as the original table.

    • Use SELECT DISTINCT to select unique rows from the original table.

    • Insert the unique rows into the new table.

    • Drop the original table.

    • Rename the new table to the original table name.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
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 - HR 

(3 Questions)

  • Q1. How to change datatype without using alter condition?
  • Ans. 

    You can use a temporary table to change datatype without altering the original table.

    • Create a new temporary table with the desired datatype

    • Insert data from the original table into the temporary table

    • Drop the original table

    • Rename the temporary table to the original table name

  • Answered by AI
  • Q2. What is the result of Inner join and left join for below table values? Table1 Table2 A B C A B C 1 2 3 1 3 2 4 5 6 4 5 7 7 8 9 ...
  • Ans. 

    Inner join returns only the matching rows between two tables, while left join returns all rows from the left table and the matching rows from the right table.

    • Inner join result: 1 2 3

    • Left join result: 1 2 3, 4 5 6, 7 8 9

  • Answered by AI
  • Q3. What Tools used for ETL testing?
  • Ans. 

    Some tools used for ETL testing include Informatica PowerCenter, Talend, IBM InfoSphere DataStage, and Apache Nifi.

    • Informatica PowerCenter

    • Talend

    • IBM InfoSphere DataStage

    • Apache Nifi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All about whatever in our resume should be in very clear

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Explain project architecture?
  • Ans. 

    Project architecture refers to the overall structure of a software project, including components, modules, and their interactions.

    • Project architecture defines how different components of a software project are organized and interact with each other.

    • It includes the high-level design of the system, such as the database structure, data flow, and integration points.

    • Project architecture also involves decisions on technologi...

  • Answered by AI
  • Q2. Explain challenges you faced in etl testing?
  • Ans. 

    Challenges in ETL testing include data quality issues, complex transformations, and handling large volumes of data.

    • Data quality issues such as missing or incorrect data can impact testing results

    • Complex transformations can be difficult to validate and may lead to errors in the ETL process

    • Handling large volumes of data can slow down testing processes and require efficient testing strategies

  • Answered by AI
  • Q3. What are roles and responsibilities?
  • Ans. 

    Roles and responsibilities refer to the tasks and duties assigned to an individual within a specific job or position.

    • Roles define the position or job title of an individual within an organization.

    • Responsibilities outline the specific tasks, duties, and expectations associated with that role.

    • Roles and responsibilities help clarify expectations, define boundaries, and ensure accountability.

    • Examples include testing data e...

  • Answered by AI
  • Q4. How to find duplicate values in python?
  • Ans. 

    Use a dictionary to find duplicate values in an array of strings in Python.

    • Create an empty dictionary to store the count of each string in the array.

    • Iterate through the array and for each string, check if it exists in the dictionary. If it does, increment the count. If not, add it to the dictionary with a count of 1.

    • After iterating through the array, check the dictionary for any strings with a count greater than 1. The

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - ETL Concepts, Datawarehouse concepts and Python also must required

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Sql Quires related question.
  • Q2. Data ware house related question
  • Q3. What is entry criteria & exit criteria
  • Ans. 

    Entry criteria and exit criteria are conditions that must be met before and after testing, respectively.

    • Entry criteria are the conditions that must be fulfilled before testing can begin

    • Exit criteria are the conditions that must be fulfilled before testing can be considered complete

    • Entry criteria can include having test data ready, test environment set up, and test cases prepared

    • Exit criteria can include all test cases ...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(4 Questions)

  • Q1. Explain inner join with an example
  • Ans. 

    Inner join combines rows from two tables based on a related column between them.

    • Inner join returns only the rows that have matching values in both tables

    • It is used to retrieve data that exists in both tables

    • Example: SELECT Orders.OrderID, Customers.CustomerName FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID;

  • Answered by AI
  • Q2. Explain cross join with an example
  • Ans. 

    Cross join combines each row from one table with each row from another table.

    • Cross join produces a Cartesian product of the two tables involved.

    • It does not require any common columns between the two tables.

    • It can result in a large number of rows if the tables are big.

    • Example: SELECT * FROM table1 CROSS JOIN table2;

  • Answered by AI
  • Q3. Provided Employee Table and asked to do a self join
  • Q4. Explain different types of data validation and checks performed in ETL testing
  • Ans. 

    Different types of data validation and checks in ETL testing include schema validation, data completeness checks, data transformation checks, and data quality checks.

    • Schema validation ensures that the data conforms to the expected structure and format.

    • Data completeness checks verify that all expected data is present and accounted for.

    • Data transformation checks ensure that data is accurately transformed according to bus...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Difference between Truncate , delete and drop
  • Ans. 

    Truncate, delete, and drop are SQL commands used to remove data from a database, but they differ in their functionality.

    • Truncate is a DDL command that removes all rows from a table, but keeps the structure intact.

    • Delete is a DML command that removes specific rows from a table based on a condition.

    • Drop is a DDL command that removes an entire table from the database, including its structure and data.

    • Truncate is faster th...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Introduction current project framework java core selenium etc
Round 3 - Technical 

(1 Question)

  • Q1. Introduction current project framework core java version control CI/CD selenium etc
Round 4 - HR 

(1 Question)

  • Q1. Introduction salary discussion joining location LWD etc

Interview Preparation Tips

Interview preparation tips for other job seekers - keep your knowledge polished because interviewer ask from very basic to the current scenario.

Manual Tester Interview Questions & Answers

IBM user image Mahesh Revankar

posted on 16 Jul 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
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 

Simple problems from Agarwal book.And basic coding

Round 3 - HR 

(3 Questions)

  • Q1. Normal HR questions about work experience and project
  • Q2. Let me about your project
  • Q3. Work experience of previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Test MCQ's 30 Mins Mostly MCQ's

Round 3 - Group Discussion 

Basic Topic on AI/ML or Chat GPT

Round 4 - Technical 

(2 Questions)

  • Q1. Basic technical questions about the domain
  • Q2. One on AI One on ML

Interview Preparation Tips

Topics to prepare for Tata Group QA Tester interview:
  • Supply Chain Management
  • Joomla
Interview preparation tips for other job seekers - Be honest, polite and humble
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Very tough....And critical thinking

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is your Strength?
  • Q2. Tell me about your Project

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't fear about your interview.Pratice well...Do well

Accenture Interview FAQs

How many rounds are there in Accenture Senior ETL Tester interview?
Accenture interview process usually has 1 rounds. The most common rounds in the Accenture interview process are One-on-one Round.
What are the top questions asked in Accenture Senior ETL Tester interview?

Some of the top questions asked at the Accenture Senior ETL Tester interview -

  1. How to delete duplicates from a ta...read more
  2. Difference b/w union and union ...read more

Tell us how to improve this page.

Accenture Senior ETL Tester Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.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
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Accenture Senior ETL Tester Salary
based on 29 salaries
₹6.2 L/yr - ₹10 L/yr
19% less than the average Senior ETL Tester Salary in India
View more details
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
26.2k salaries
unlock blur

₹6.9 L/yr - ₹20.2 L/yr

Team Lead
24.2k salaries
unlock blur

₹7.1 L/yr - ₹25.5 L/yr

Senior Software Engineer
18.3k salaries
unlock blur

₹6 L/yr - ₹19.4 L/yr

Software Engineer
17.5k salaries
unlock blur

₹3.6 L/yr - ₹13.3 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Infosys

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