Upload Button Icon Add office photos

Filter interviews by

ABC Company Abinitio Developer Interview Questions and Answers

Updated 14 Oct 2024

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Case Study 

Scenario based questions were asked for which the abinitio components were to be stated.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Prior experience, how did you manage a complex situation?
  • Q2. Have you developed team? What is your approach?
  • Ans. 

    Yes, I have developed teams in the past and my approach involves clear communication, setting goals, assigning roles based on strengths, and fostering a collaborative environment.

    • Clear communication is key to ensure everyone is on the same page and understands their responsibilities.

    • Setting clear goals helps the team stay focused and motivated towards achieving them.

    • Assigning roles based on individual strengths and ski...

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

(2 Questions)

  • Q1. About scan and rollup components.
  • Q2. How to find duplicates using sql.
  • Ans. 

    Use the GROUP BY clause with HAVING to find duplicates in SQL.

    • Use the GROUP BY clause to group rows with the same values together

    • Use the HAVING clause to filter out groups that have more than one row (indicating 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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell about previous projects.
  • Ans. 

    I have worked on various projects involving data integration, ETL processes, and data warehousing using Abinitio.

    • Developed ETL processes to extract, transform, and load data from multiple sources into a data warehouse.

    • Implemented complex data transformations and business logic using Abinitio graphs and components.

    • Worked on performance tuning and optimization of Abinitio graphs to improve processing times.

    • Collaborated w...

  • Answered by AI
  • Q2. Have you worked on procedures?
  • Ans. 

    Yes, I have worked on procedures in Abinitio development.

    • I have experience creating and implementing procedures in Abinitio to automate data processing tasks.

    • I have written complex procedures using Abinitio's graphical interface or scripting language.

    • I have optimized procedures for performance and efficiency.

    • I have debugged and troubleshooted procedures to ensure they function correctly.

    • I have documented procedures for

  • Answered by AI
Interview experience
4
Good
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. Ab initio scenario, SQL ,Unix
Interview experience
4
Good
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 

(2 Questions)

  • Q1. What will be the output if input is MFS file , componenet is rollup with {} key
  • Ans. 

    The output of a rollup component with {} key on an MFS file will be the aggregated values based on the specified key.

    • The rollup component in Abinitio is used to perform aggregation operations on data.

    • The {} key in the rollup component indicates that all records should be considered for aggregation.

    • The output will contain the aggregated values based on the specified key.

    • For example, if the MFS file contains student reco...

  • Answered by AI
  • Q2. What will be the output if input is mfs file and component is dedup with {} key
  • Ans. 

    The output will be a deduplicated mfs file based on the specified key.

    • The dedup component in Abinitio is used to remove duplicate records from a dataset.

    • The {} key in dedup signifies that all fields in the record are considered for deduplication.

    • The output will contain only unique records based on the combination of all fields in the input mfs file.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for situational questions as well.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Difference between lookup and lookup file
  • Ans. 

    Lookup is a component in Abinitio used to search for data in a dataset, while lookup file is a file used as a reference for lookup operations.

    • Lookup is a component in Abinitio used to search for data in a dataset.

    • Lookup file is a file used as a reference for lookup operations.

    • Lookup can be performed on multiple columns, while lookup file is typically a single file used for reference.

    • Lookup can be used to join data from...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Monster and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Components in abinitio
  • Ans. 

    Abinitio components are building blocks used for data processing in Abinitio applications.

    • Components are reusable building blocks for data processing tasks.

    • They can be used for data extraction, transformation, and loading.

    • Examples of components include Reformat, Sort, Join, and Partition.

    • Components can be combined to create complex data processing workflows.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare and research about company
Learn about advanced concepts as cloud in tred ,trend to learn about cloud technologies

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between output index and output indexes in component, Reformat?
  • Ans. 

    Output index is a single index while output indexes is an array of indexes in Reformat component.

    • Output index refers to a single output field in Reformat component.

    • Output indexes refer to multiple output fields in Reformat component.

    • Output index is specified using a single integer value.

    • Output indexes are specified using an array of integer values.

  • Answered by AI
  • Q2. How to convert a column into a row?
  • Ans. 

    Use UNPIVOT operator in SQL to convert a column into a row.

    • Use UNPIVOT operator in SQL to convert a column into a row

    • Syntax: SELECT * FROM (SELECT [column_name] FROM [table_name]) AS [alias_name] UNPIVOT ([new_column_name] FOR [old_column_name] IN ([column_name])) AS [alias_name]

    • Example: SELECT * FROM (SELECT col1, col2, col3 FROM table1) AS t UNPIVOT (val FOR col IN (col1, col2, col3)) AS u

    • Transpose function in Excel

  • Answered by AI
  • Q3. Difference between partitioning and bucketing in SQL?
  • Ans. 

    Partitioning divides a table into smaller parts while bucketing groups data based on a hash function.

    • Partitioning is used to improve query performance by reducing the amount of data that needs to be scanned.

    • Bucketing is used to evenly distribute data across nodes in a cluster.

    • Partitioning is done based on a column or set of columns, while bucketing is done based on a hash function.

    • Partitioning is commonly used in datab...

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I would like to discuss my salary expectations in person during the negotiation phase.

    • Express willingness to discuss salary expectations during negotiation phase

    • Avoid giving a specific number without understanding the full scope of the role and responsibilities

    • Highlight the importance of considering factors such as experience, skills, and market value

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    I worked as an Abinitio Developer in my previous job.

    • Developed and maintained Abinitio graphs for data integration and transformation.

    • Collaborated with cross-functional teams to gather requirements and design solutions.

    • Optimized performance of Abinitio graphs by tuning parameters and implementing best practices.

    • Troubleshot and resolved issues related to data processing and ETL workflows.

    • Participated in code reviews and...

  • Answered by AI
  • Q3. Tell me about yourself.
  • Ans. 

    I am an experienced Abinitio Developer with a strong background in data integration and ETL processes.

    • I have been working in the field of Abinitio development for the past 5 years.

    • I have expertise in designing and implementing complex data integration solutions using Abinitio.

    • I am proficient in various Abinitio components such as GDE, Co>Operating System, and EME.

    • I have experience in working with different databases an...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Abinitio Developer interview:
  • Parallelism
  • AB products overview
  • Useful components
  • XML handling
  • Air commands
Interview preparation tips for other job seekers - Be Confident. Prepare well using Abinitio help document.

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Question based on GDE mostly scenario based Run time behaviour of components

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on basics and scenarios

ABC Company Interview FAQs

How many rounds are there in ABC Company Abinitio Developer interview?
ABC Company interview process usually has 1 rounds. The most common rounds in the ABC Company interview process are Aptitude Test.

Tell us how to improve this page.

ABC Company Abinitio Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Manager
7 salaries
unlock blur

₹10.5 L/yr - ₹25 L/yr

Software Engineer
5 salaries
unlock blur

₹3.2 L/yr - ₹13.7 L/yr

Softwaretest Engineer
4 salaries
unlock blur

₹3.1 L/yr - ₹32 L/yr

Team Lead
4 salaries
unlock blur

₹6.6 L/yr - ₹9.5 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹22 L/yr - ₹34.8 L/yr

Explore more salaries
Compare ABC Company with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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