Upload Button Icon Add office photos

Filter interviews by

Accenture SQL Server Developer Interview Questions and Answers for Experienced

Updated 1 Feb 2024

Accenture SQL Server Developer Interview Experiences for Experienced

1 interview found

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

(1 Question)

  • Q1. Asked about SSIS, Queries to retrieve highest salary and asked about projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on technical skills and Handson on sql

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is loads in informatica
  • Ans. 

    Loads in Informatica refer to the process of moving data from source to target in a data warehouse.

    • Loads involve extracting data from source systems

    • Transforming the data as needed

    • Loading the data into the target data warehouse or database

    • Loads can be full, incremental, or delta depending on the requirements

    • Example: Loading customer data from a CRM system into a data warehouse for analysis

  • Answered by AI
  • Q2. Query to find duplicates in table
  • Ans. 

    Use GROUP BY and HAVING clause to find duplicates in a table.

    • Use GROUP BY to group rows with same values together

    • Use HAVING COUNT(*) > 1 to filter out duplicates

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Data Modeling Concepts, SQL Query
  • Q2. Data Governance, Data Lineage, ETL process,
Round 2 - Coding Test 

SQL Scripts to write and also also asked to design an data model of my choice in Telecom Domain

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. What is the uses of filter stage
  • Ans. 

    Filter stage is used in ETL processes to selectively pass or reject data based on specified criteria.

    • Filter stage helps in removing unwanted data from the input dataset.

    • It can be used to apply conditions like filtering out duplicate records, selecting specific columns, or excluding certain values.

    • For example, a filter stage can be used to only pass records where the sales amount is greater than $1000.

  • Answered by AI
  • Q2. What is the uses of transfor stage
  • Ans. 

    Transform stage is used in ETL process to apply business rules, clean and enrich data before loading into target database.

    • Transform stage is used to apply business rules to the data.

    • It is used to clean and standardize data before loading into the target database.

    • Transform stage can also be used to enrich data by combining multiple sources or adding calculated fields.

    • Examples include converting data types, removing dupl

  • Answered by AI
  • Q3. What is the uses of sort stage
  • Ans. 

    Sort stage is used in ETL processes to sort data based on specified criteria before loading it into the target system.

    • Sort stage helps in arranging data in a specific order for better analysis and reporting

    • It can be used to remove duplicates from data before loading

    • Sorting can be done based on multiple columns or expressions

    • Example: Sorting customer data based on their purchase amount before loading into a data warehou

  • Answered by AI
  • Q4. How to create the prallel job
  • Ans. 

    To create a parallel job, use parallel processing techniques to divide tasks into smaller subtasks that can be executed simultaneously.

    • Identify tasks that can be executed independently and in parallel

    • Use parallel processing techniques such as multi-threading or distributed computing

    • Implement parallel job using ETL tools like Informatica or Talend

    • Monitor and optimize parallel job performance to ensure efficient executio

  • Answered by AI
  • Q5. Defenation of scd
  • Ans. 

    SCD stands for Slowly Changing Dimension, a technique used in data warehousing to track changes in dimension attributes over time.

    • SCD is used to maintain historical data in a data warehouse

    • There are different types of SCDs - Type 1, Type 2, and Type 3

    • Type 1 SCD overwrites old data with new data

    • Type 2 SCD creates a new record for each change and maintains history

    • Type 3 SCD keeps a limited history by adding columns to tr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi my name is ravindra pls check my profile .i'm intrested ur company

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Basics of Kotlin
  • Q2. Jetpack component.
  • Q3. One from data structure.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test your algorithmic thinking and problem solving skills

Round 2 - One-on-one 

(1 Question)

  • Q1. Communications,clearity of answers
Round 3 - HR 

(1 Question)

  • Q1. Discussion about packages,joining date

Interview Preparation Tips

Interview preparation tips for other job seekers - Self assessment,Techical preparation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. DONT REMEMBER THE QUESTIONS
  • Q2. I FORGOT THE QUESTION ASKED

Interview Preparation Tips

Interview preparation tips for other job seekers - BE PREPARED
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sql questions based on fundamental

ETL Developer Interview Questions & Answers

HCL Group user image LAKSHMI VENKATA SAI KUMAR B

posted on 17 Jan 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. IICS FUNCTIONS TRANSFORMATIONS SQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 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. Explain Activity lifecycle
  • Ans. 

    Activity lifecycle refers to the series of states an activity goes through during its lifetime in an Android app.

    • Activity is created with onCreate() method

    • Activity is started with onStart() method

    • Activity is resumed with onResume() method

    • Activity is paused with onPause() method

    • Activity is stopped with onStop() method

    • Activity is destroyed with onDestroy() method

  • Answered by AI
  • Q2. What is databinding
  • Ans. 

    Data binding is a technique in software development that establishes a connection between the UI components and the data sources.

    • Data binding allows for automatic synchronization of data between the UI and data sources.

    • It reduces boilerplate code by eliminating the need for manual updates to the UI when data changes.

    • Data binding can be implemented using frameworks like Android Data Binding Library.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - answering questions with small real time examples is helpful.

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture SQL Server Developer interview for experienced candidates?
Accenture interview process for experienced candidates usually has 1 rounds. The most common rounds in the Accenture interview process for experienced candidates are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
Accenture SQL Server Developer Salary
based on 10 salaries
₹3.5 L/yr - ₹12.5 L/yr
32% more than the average SQL Server Developer 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.3k salaries
unlock blur

₹6.8 L/yr - ₹21.5 L/yr

Team Lead
24.1k salaries
unlock blur

₹7 L/yr - ₹25.4 L/yr

Senior Software Engineer
18.4k salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Software Engineer
17.6k salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Infosys

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