Upload Button Icon Add office photos
Engaged Employer

i

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

Amdocs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amdocs ETL Developer Interview Questions and Answers

Updated 12 Nov 2019

Amdocs ETL Developer Interview Experiences

1 interview found

ETL Developer Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2019

I applied via Naukri.com and was interviewed in Oct 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Why you left your first job?
  • Ans. 

    I left my first job to pursue better growth opportunities and align my career with my passion for data engineering.

    • I felt that my skills were not being fully utilized in my first role, which limited my professional growth.

    • The company culture did not align with my values, making it challenging to stay motivated.

    • I wanted to work on more complex ETL projects that could enhance my technical expertise.

    • I received an offer fr...

  • Answered by AI
  • Q2. Because I want good growth in my career.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study well representation is very important confidence and technical skills

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Diff between star schema and snowflake schema?
  • Ans. 

    Star schema has a centralized fact table with denormalized dimensions, while snowflake schema has normalized dimensions.

    • Star schema is simpler and easier to understand compared to snowflake schema.

    • In star schema, dimensions are denormalized and directly connected to the fact table.

    • Snowflake schema has normalized dimensions, meaning dimensions are further broken down into sub-dimensions.

    • Star schema is more suitable for ...

  • Answered by AI
  • Q2. Explain the scenario based on type 2 scd in ur project
  • Ans. 

    Type 2 SCD is used to track historical changes in data, creating new records for each change.

    • In our project, we use Type 2 SCD to track changes in customer information such as address, phone number, and email.

    • When a customer's address changes, a new record is created with the updated address and a new surrogate key.

    • This allows us to maintain a history of customer information and analyze trends over time.

  • Answered by AI
  • Q3. How to delete records in a table?
  • Ans. 

    Records in a table can be deleted using SQL DELETE statement.

    • Use the DELETE statement followed by the table name to delete records.

    • You can add a WHERE clause to specify which records to delete.

    • Make sure to commit the transaction after deleting records to make the changes permanent.

  • Answered by AI
  • Q4. Max sal of an employee

Skills evaluated in this interview

ETL Developer Interview Questions Asked at Other Companies

asked in Ciber
Q1. What are the content of APT_CONFIG_FILE? Can you brief on the rel ... read more
asked in ZS
Q2. What is the process flow of Slowly Changing Dimension Type 2 (SCD ... read more
asked in ZS
Q3. What is the SQL query using PIVOT to transform the given input ta ... read more
Q4. What is trigger . Do Implementation of types of trigger?
Q5. How would you run 300 stored procedures sequentially and in paral ... read more
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 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 

(3 Questions)

  • Q1. About project details
  • Q2. Explain use of lookup
  • Ans. 

    Lookup is used in ETL processes to search for a specific value in a dataset and retrieve related information.

    • Lookup is used to search for a specific value in a dataset

    • It retrieves related information based on the search criteria

    • Lookup can be used to join data from different sources based on a common key

  • Answered by AI
  • Q3. Type of lookup transformation
  • Ans. 

    There are three types of lookup transformations: Connected, Unconnected, and Cached.

    • Connected lookup transformation is used to look up data from a relational table or view.

    • Unconnected lookup transformation is used to look up data from a flat file or external source.

    • Cached lookup transformation stores the lookup data in memory for faster access.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Find All Anagrams Problem Statement

    Given a string STR and a non-empty string PTR, identify all the starting indices of anagrams of PTR within STR.

    Explanation:

    An anagram of a string is another string ...

  • Ans. 

    Given a string STR and a non-empty string PTR, find all starting indices of anagrams of PTR within STR.

    • Create a frequency map of characters in PTR.

    • Use sliding window technique to check anagrams in STR.

    • Return the starting indices of anagrams found.

  • Answered by AI
  • Q2. 

    Subset Sum Problem Statement

    Given an array of integers, find the sum of all subsets in non-decreasing order of the given array.

    Example:

    Input:
    N = 3, array = [1, 2]
    Output:
    [0, 1, 2, 3]
    Explanatio...
  • Ans. 

    Find sum of all subsets in non-decreasing order of given array.

    • Use recursion to generate all subsets of the array

    • Calculate sum of each subset and store in a list

    • Sort the list in non-decreasing order to get the final result

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

First he asked me to tell about myself, then he asked me some OOPS Concepts,difference in shallow copy and deep copy,
asked me to write a code for boundary traversal of binary tree.

  • Q1. 

    Boundary Traversal of Binary Tree Problem Statement

    Given a binary tree consisting of integers, your task is to provide the boundary nodes of this tree in an anti-clockwise direction, starting with the ro...

  • Ans. 

    Boundary traversal of a binary tree to find left boundary, right boundary, and leaf nodes in an anti-clockwise direction.

    • Perform a pre-order traversal to get the left boundary nodes

    • Perform an in-order traversal to get the leaf nodes

    • Perform a post-order traversal to get the right boundary nodes

    • Combine the results to get the boundary nodes in anti-clockwise direction

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The second tech interview lasted for about an hour and half. First he asked me to tell about myself. Then he asked me how my first interview was. He then asked me where should I start, data structures, databases, to which I replied anywhere.
He started asking questions about C. He asked difference between call by pointer and call by reference. Whether a function can be defined as
void function(int &x, int &y);
Then he asked what is volatile data type in C. Then about the static data class.
He also asked me to write a program to find length of a string.
Then he asked about how functions in C work. How does the program know where to go back after a function is over, etc.
He then asked me if I knew C++, I said no. So he continued to ask a few questions on data structures.
He then asked about the ACID properties which a good database must have. He asked how are transactions managed by a database, what are commits, how, in case of a power failure, data is reverted back, etc.
Then he asked me whether I like to work individually or in a team. I said in a team. He then gave me scenario where I have to decide between a project I am working on, whose deadline is approaching, and helping a friend working on another project whose deadline is also approaching, and asked me what would I do in such a case.

  • Q1. 

    Find the Middle of a Linked List

    This problem requires you to return a pointer that references the middle node of a singly linked list.

    Explanation:

    If the number of elements in the linked list is odd, ...

  • Ans. 

    Return the middle node of a singly linked list, considering odd and even number of elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • Return the node pointed to by the slow pointer as the middle node

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria7 CGPASAP Labs interview preparation:Topics to prepare for the interview - Data Structures ,sql, machine learning, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 5 codes daily.
Tip 2 : Do at-least one machine Learning Project.

Application resume tips for other job seekers

Tip 1 : Have at least three project.
Tip 2 : Put some achievements.

Final outcome of the interviewSelected

Skills evaluated in this interview

What people are saying about Amdocs

View All
endlessdahi
3d
ex -
Syneos Health
Staffing firms calling for Amdocs, Wipro roles—is it legit?
I'm getting daily calls from staffing companies like Sage IT, Techilla, etc., claiming to work with big clients like Amdocs, Wipro, and Virtusa. They offer good packages on their payroll, saying companies like Virtusa are their clients. How do they provide services to companies that are already service-based? Are these offers genuine? They ask about experience, salary expectations, and even for the last 4 digits of my Aadhar, then send a confirmation email. I've canceled interviews before, but the calls keep coming. Can someone help me understand this?
Got a question about Amdocs?
Ask anonymously on communities.

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is web service flow
  • Ans. 

    Web service flow is the sequence of steps involved in the communication between a client and a server over the internet.

    • Web service flow involves a client sending a request to a server

    • The server processes the request and sends a response back to the client

    • The response can be in various formats such as XML, JSON, or plain text

    • Web service flow can be synchronous or asynchronous

    • Examples of web services include RESTful API...

  • Answered by AI
  • Q2. How to check ports in Solaris or linux machine
  • Ans. 

    To check ports in Solaris or Linux machine, use the netstat command.

    • Open the terminal and type 'netstat -an' to display all open ports.

    • Use 'netstat -an | grep ' to check if a specific port is open.

    • To check listening ports, use 'netstat -an | grep LISTEN'.

    • For Solaris, use 'netstat -an | grep .' instead of '| grep '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

I applied via Referral and was interviewed before Oct 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell Us about yourself?
  • Ans. I am from Kolkata. I have convey about my Educational Background to Interviewer.
  • Answered by Tanay Lakshman
  • Q2. Tell us about Coalnet Architecture of MMS Module?
  • Ans. I have convey about Indent,Purchase Order,Receipt and Issue in MMS Module to Interviewer.They have taken my Personal Documentation.
  • Answered by Tanay Lakshman

Interview Preparation Tips

Interview preparation tips for other job seekers - The documentation got approved by Samuel Of Oracle Australia Office.I was interviewed by Samuel by Telephone.Outcome will be Given in Email.It consists of 15 minutes technical interview.

Amdocs HR Interview Questions

48 questions and answers

Q. What motivates you to want to join this company?
Q. What was your role in your previous company?
Q. Tell me about your roles.

I applied via Campus Placement and was interviewed before Nov 2021. 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 - Aptitude Test 

Numerical and logical aptitude test

Round 3 - Coding Test 

There are 5 rounds on datastructure and algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice hr and all team is suportive
Good and smoth interview experiance
Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. There were two technical rounds followed by a managerial and hr round.The first round was highly technical and questions were asked on string data structures, binary search trees and maps.There where sever...
  • Q2. Managerial round will be a formal discussion with the interviewer regarding the role,what roles you have worked in your previous organization, questions might be asked based on your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to have some practice of common data structures and algorithms used. From framework side you will asked questions based on your resume and role. And best of luck

I appeared for an interview before Sep 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 1 hour
Round difficulty - Medium

  • Q1. 

    First Missing Positive Problem Statement

    You are provided with an integer array ARR of length 'N'. Your objective is to determine the first missing positive integer using linear time and constant space. T...

  • Ans. 

    Find the smallest positive integer missing from an array of integers.

    • Iterate through the array and mark positive integers as visited by changing the sign of the corresponding index.

    • After marking all positive integers, iterate again to find the first positive integer with a positive value.

    • Return the index of the first positive integer found plus one as the answer.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaNoneMicrosoft interview preparation:Topics to prepare for the interview - Data structures, Pointers, Microsoft Cloud, Computer Architecture, Dynamic Programming, Azure Services,Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : During an interview, never say that you don't know the answer, keep trying and the interviewer will help you himself.
Tip 2 : Keep speaking up the approach going on in your mind, they want to judge your approaches much more than whether the answer is right or wrong.
Tip 3 : Be confident, cheerful, keep smiling, and continue making eye contact with the interviewer, this leaves a positive impression.
Tip 4 : Search and practice questions specific to the company, questions are repeated several times.
Tip 5 :  A sound knowledge of Microsoft Azure Services and cloud computing will be an icing on the cake, and increase your chances to get selected.
Tip 6 : Keep giving contests on coding platforms, it will help you to stay motivated and check your stand.
Tip 7 : Keep a daily goal of number of questions instead of the time duration.

Application resume tips for other job seekers

Tip 1 : Everything mentioned on the resume should be thoroughly known to you since if they catch you being dishonest, pretty good coding skills also might not help.
Tip 2 : Have projects related to the same field you are trying to apply for mentioned in your resume, this shows you are already experienced in the field.
Tip 3 : Adding references of some experienced people of the same field might help you gain their trust.
Tip 4 : Do not keep your resume too long, and do not mention irrelevant details, keep it short and crisp.
Tip 5 : Some experience in the field of operations and management or some positions of responsibility will really help you score extra points since it shows you have leadership qualities and are familiar with the market along with super coding skills.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

It was in the late afternoon. I was vey nervous, but the interviewer was very friendly. I managed to solve the questions early, so we discussed general things about the company and its culture.

  • Q1. 

    Rooms and Keys Problem Statement

    Given some information about rooms in a military camp, where rooms are numbered from 0 to 'N-1'. Each room may contain keys to some other rooms. You can only visit a room ...

  • Ans. 

    Determine if all rooms can be visited starting from room 0 with given keys information.

    • Use depth-first search (DFS) to traverse through rooms and keys.

    • Keep track of visited rooms to avoid infinite loops.

    • Check if all rooms have been visited at the end.

  • Answered by AI
  • Q2. 

    Detect the First Node of the Loop in a Singly Linked List

    You are provided with a singly linked list that may contain a cycle. Your task is to return the node where the cycle begins, if such a cycle exist...

  • Ans. 

    To detect the first node of the loop in a singly linked list, we can use Floyd's Cycle Detection Algorithm.

    • Use Floyd's Cycle Detection Algorithm to find the meeting point of the slow and fast pointers in the linked list.

    • Reset one of the pointers to the head of the linked list and move both pointers at the same speed until they meet at the start of the cycle.

    • The node where the pointers meet is the first node of the loop...

  • Answered by AI
Round 2 - Video Call 

Round duration - 30 minutes
Round difficulty - Medium

The duration of the round was 30 minutes. It was conducted in the morning hours. The interviewer asked me many questions regarding my internship experience and my project. Later we discussed some problem solving.

Round 3 - Video Call 

(1 Question)

Round duration - 75 minutes
Round difficulty - Hard

This round was conducted early in the morning. The interviewer was highly experienced and very friendly. He discussed about his life journey and his experience with the company.
Overall the experience was good, getting interviewed by such experienced person

  • Q1. 

    Time to Burn Tree Problem

    You are given a binary tree consisting of 'N' unique nodes and a start node where the burning will commence. The task is to calculate the time in minutes required to completely b...

  • Ans. 

    Calculate the time in minutes required to completely burn a binary tree starting from a given node.

    • Traverse the tree to find the longest path from the start node to a leaf node.

    • The time to burn the entire tree is equal to the length of the longest path.

    • Simulate the burning process by incrementing the time for each level of the tree.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as SDE - 1 in HyderabadEligibility criteria7.5 CGPAMicrosoft interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, System Design, Object Oriented Programming, Database Management SystemTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Regularly practice atleast 10 questions on various topics 
Tip 2 : Participate in coding competitions to experience time bound coding
Tip 3 : Give mock interviews for better results

Application resume tips for other job seekers

Tip 1 : Mention the projects clearly, explaining the tech stack, the problem solved and whether its a group or individual project
Tip 2 : Do not put false things on resume.
Tip 3 : Mention only those skills, in which you are confident.

Final outcome of the interviewSelected

Skills evaluated in this interview

Amdocs Interview FAQs

How to prepare for Amdocs ETL 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 Amdocs. The most common topics and skills that interviewers at Amdocs expect are Ab Initio, Amdocs, Application Software, Computer science and Continuous Improvement.

Tell us how to improve this page.

Amdocs ETL Developer Salary
based on 108 salaries
₹8.3 L/yr - ₹14.7 L/yr
56% more than the average ETL Developer Salary in India
View more details

Amdocs ETL Developer Reviews and Ratings

based on 19 reviews

4.2/5

Rating in categories

3.8

Skill development

3.4

Work-life balance

3.5

Salary

4.0

Job security

3.9

Company culture

3.2

Promotions

3.8

Work satisfaction

Explore 19 Reviews and Ratings
Software Developer
8.6k salaries
unlock blur

₹9.2 L/yr - ₹15.6 L/yr

Software Engineer
2k salaries
unlock blur

₹7.7 L/yr - ₹16.2 L/yr

Softwaretest Engineer
1.8k salaries
unlock blur

₹5.7 L/yr - ₹13.9 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹5.2 L/yr - ₹12.5 L/yr

Associate Software Engineer
1k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.5
Compare

IBM

3.9
Compare

Oracle

3.6
Compare

Carelon Global Solutions

3.8
Compare
write
Share an Interview