Upload Button Icon Add office photos

Filter interviews by

Accenture Informatica Developer Interview Questions and Answers

Updated 23 Jun 2024

Accenture Informatica Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-

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

Round 1 - Assessment 

(1 Question)

  • Q1. Questions related to informatica powercenter basic to mid level
Round 2 - Technical 

(5 Questions)

  • Q1. Self intro as usual
  • Q2. What are active and passive transformations?
  • Ans. 

    Active transformations change the number of rows that pass through them, while passive transformations do not change the number of rows.

    • Active transformations can filter, update, or modify the number of rows in a data stream (e.g. Filter, Router, Update Strategy).

    • Passive transformations do not change the number of rows in a data stream, they only allow data to pass through unchanged (e.g. Expression, Lookup, Sequence G

  • Answered by AI
  • Q3. Some basic questions on transformations like Expression, Update, Router, filter, SQ,lookup etc
  • Q4. What are different types of lookup caches
  • Ans. 

    Different types of lookup caches include persistent cache, dynamic cache, and shared cache.

    • Persistent cache stores lookup data in a flat file or database table for reuse across sessions.

    • Dynamic cache dynamically loads lookup data into memory as needed during a session.

    • Shared cache allows multiple sessions to share the same cache for improved performance.

  • Answered by AI
  • Q5. Difference between filter and router.
  • Ans. 

    Filter is used to pass or reject data based on conditions, while router is used to route data to different targets based on conditions.

    • Filter is used to include or exclude data based on specified conditions.

    • Router is used to direct data to different targets based on specified conditions.

    • Filter is typically used to remove unwanted data, while router is used to split data flow.

    • Example: Using filter to exclude records wit...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Some basic to medium level questions on transformations
  • Q2. Some real time scenario questions
  • Q3. Direct and indirect file loading
Round 4 - HR 

(2 Questions)

  • Q1. Asked for Mumbai location
  • Q2. 5 days Client office

Interview Preparation Tips

Interview preparation tips for other job seekers - Though it went well till HR round, they have dropped my profile saying that they need mumbai Resident people for this role.
Even though I agreed for relocation as well. They rejected me after all 4 freaking rounds.

Skills evaluated in this interview

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 Jul 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Analytical functions difference
  • Ans. 

    Analytical functions are used to perform calculations across a set of rows related to the current row.

    • Analytical functions operate on a group of rows and return a single result for each row

    • They can be used to calculate running totals, moving averages, rank, percentiles, etc.

    • Examples include ROW_NUMBER(), RANK(), SUM() OVER(), AVG() OVER()

  • Answered by AI
  • Q2. Which transformation uses in scd2?
  • Ans. 

    The Slowly Changing Dimension Type 2 (SCD2) transformation is used for handling historical data changes in a data warehouse.

    • SCD2 transformation is used to track historical changes in dimension tables.

    • It maintains multiple versions of a record by adding new rows with updated information and end-dating the previous record.

    • Commonly used in scenarios where historical data needs to be preserved and queried.

    • Example: When a c...

  • Answered by AI
  • Q3. Unix basic, how to find particular file in directory?
  • Q4. Given 2 table A and B. Find count of left join, right join, inner join, full outer join?
  • Ans. 

    To find the count of different types of joins between two tables A and B.

    • Left join: Includes all records from table A and matching records from table B.

    • Right join: Includes all records from table B and matching records from table A.

    • Inner join: Includes only the matching records from both tables.

    • Full outer join: Includes all records when there is a match in either table A or table B.

  • Answered by AI
  • Q5. Incremental load

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Diff between powercenter and IICS
  • Ans. 

    PowerCenter is an on-premise data integration tool, while IICS is a cloud-based integration platform.

    • PowerCenter is on-premise, IICS is cloud-based

    • PowerCenter is a traditional ETL tool, IICS is a modern integration platform

    • PowerCenter requires infrastructure setup, IICS is managed by Informatica

    • PowerCenter is more suitable for large enterprises with on-premise data, IICS is better for cloud-based integrations

  • Answered by AI
  • Q2. Types of caches
  • Ans. 

    Types of caches include memory cache, disk cache, and browser cache.

    • Memory cache stores data in memory for quick access.

    • Disk cache stores data on the hard drive for faster retrieval.

    • Browser cache stores web page elements to reduce loading times.

    • Other types include CPU cache, page cache, and object cache.

  • Answered by AI

Skills evaluated in this interview

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

(4 Questions)

  • Q1. Data warehouse concept
  • Q2. Linux commands like sed ,grep,find
  • Q3. Diff between char and varchar
  • Ans. 

    Char is fixed length string data type, while varchar is variable length string data type.

    • Char stores fixed length strings, while varchar stores variable length strings.

    • Char pads with spaces to reach fixed length, while varchar does not pad.

    • Char is faster for fixed length data, while varchar is more flexible for variable length data.

  • Answered by AI
  • Q4. How to connect the session using unix
  • Ans. 

    To connect a session using Unix, you can use the pmcmd command with appropriate arguments.

    • Use the pmcmd command followed by the connect option to connect to the Informatica session.

    • Provide the necessary connection details such as domain, repository, username, and password.

    • You can also specify the session name and folder path if needed.

    • Example: pmcmd connect -sv MyInformaticaServer -d MyDomain -u MyUsername -p MyPasswor

  • Answered by AI

Skills evaluated in this interview

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

I applied via Indeed and was interviewed before Oct 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 - Technical 

(4 Questions)

  • Q1. Sql/ data warehousing/ scenario based questions
  • Q2. Explain Daily work in detail
  • Q3. Google-informatica scenario based questions
  • Q4. Sql- 2nd highest or 3rd highest salary
  • Ans. 

    To find the 2nd or 3rd highest salary in SQL, use the 'ORDER BY' and 'LIMIT' clauses.

    • Use the 'ORDER BY' clause to sort the salaries in descending order.

    • Use the 'LIMIT' clause to specify the number of rows to return.

    • For 2nd highest salary: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1

    • For 3rd highest salary: SELECT salary FROM employees ORDER BY salary DESC LIMIT 2,1

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basic and take time to explain your daily work.

Skills evaluated in this interview

I was interviewed in Mar 2022.

Round 1 - Technical 

(2 Questions)

  • Q1. All they asked about data warehouse concept
  • Q2. Difference between database and dataware house
  • Ans. 

    Database is a collection of related data while data warehouse is a large collection of data used for business analysis.

    • Database is used for transactional processing while data warehouse is used for analytical processing.

    • Database is designed for day-to-day operations while data warehouse is designed for decision-making purposes.

    • Database is usually smaller in size while data warehouse is much larger in size.

    • Database is n...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Datawarehouse concept , difference between database and dataware house
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2022. There were 2 interview rounds.

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

(2 Questions)

  • Q1. Difference between iics and power centre
  • Ans. 

    IICS is a cloud-based data integration platform while Power Centre is an on-premise data integration tool.

    • IICS is a newer platform compared to Power Centre

    • IICS offers more advanced features such as AI and machine learning capabilities

    • Power Centre is more suitable for large-scale data integration projects

    • IICS is more flexible and scalable due to its cloud-based nature

    • Power Centre requires more hardware and infrastructur...

  • Answered by AI
  • Q2. What is secure agent
  • Ans. 

    Secure Agent is a lightweight program that runs on-premises or in the cloud to securely connect to data sources.

    • Secure Agent is used in Informatica Cloud to securely connect to on-premises data sources

    • It is a lightweight program that can be installed on-premises or in the cloud

    • Secure Agent uses SSL/TLS encryption to secure data in transit

    • It can be configured to run on a schedule or triggered by an event

    • Examples of data...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and login before 5 mins ,it’s a 30 mins interview

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to transformation s
  • Q2. Questions of unix
Round 2 - Technical 

(2 Questions)

  • Q1. Adavanced topic of informatica
  • Q2. SQL queries questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SQL joins right left inner
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Types of SQL joins include: INNER JOIN, LEFT JOIN (or LEFT OUTER JOIN), RIGHT JOIN (or RIGHT OUTER JOIN)

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN returns all rows from the right table and the matc

  • Answered by AI
  • Q2. Informatica scenario questions
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Location preference

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL well

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Oct 2022. There were 2 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 - Technical 

(4 Questions)

  • Q1. Introduction and overview about the tool
  • Q2. Project discussion
  • Q3. High level scenario based queries
  • Q4. Deep into scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Two technical rounds will be there one is normal base technical level like what is what the exact scenario and 2nd one is deep discussion a bout project and scenario based queries.

Accenture Interview FAQs

How many rounds are there in Accenture Informatica Developer interview?
Accenture interview process usually has 4 rounds. The most common rounds in the Accenture interview process are Technical and HR.
How to prepare for Accenture Informatica 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 Accenture. The most common topics and skills that interviewers at Accenture expect are Analytical skills, Application Development, Defect analysis, ETL and Problem Solving.
What are the top questions asked in Accenture Informatica Developer interview?

Some of the top questions asked at the Accenture Informatica Developer interview -

  1. What are active and passive transformatio...read more
  2. What are different types of lookup cac...read more
  3. Difference between filter and rout...read more

Tell us how to improve this page.

Accenture Informatica Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Accenture Informatica Developer Salary
based on 294 salaries
₹3 L/yr - ₹13.5 L/yr
10% more than the average Informatica Developer Salary in India
View more details

Accenture Informatica Developer Reviews and Ratings

based on 5 reviews

4.8/5

Rating in categories

4.8

Skill development

4.5

Work-life balance

4.3

Salary

4.6

Job security

4.6

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 5 Reviews and Ratings
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 L/yr - ₹25.3 L/yr

Senior Software Engineer
18.4k salaries
unlock blur

₹6 L/yr - ₹19.2 L/yr

Software Engineer
17.5k salaries
unlock blur

₹3.6 L/yr - ₹13 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Infosys

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