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
3.8

based on 3.9k Reviews

Filter interviews by

Amdocs Data Engineer Intern Interview Questions and Answers

Updated 17 Jan 2023

Amdocs Data Engineer Intern Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Dec 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 - Coding Test 

Basic python and sql. more about problem solving mindset than thereotical. so prepare fpor the basics and clear understanding

Round 3 - One-on-one 

(4 Questions)

  • Q1. 1v1 round with the manager. he focused on my problem solving mindset. gave some basic python questiojs to solve and they were easy if your baiscs are clear
  • Q2. Sort a list in python
  • Ans. 

    Sort a list in Python

    • Use the built-in sorted() function to sort the list in ascending order

    • Use the sort() method to sort the list in place

    • Use the reverse parameter to sort in descending order

  • Answered by AI
  • Q3. What are window functions in sql
  • Ans. 

    Window functions in SQL are used to perform calculations across a set of rows that are related to the current row.

    • Window functions are used to calculate values based on a subset of rows within a table

    • They allow you to perform calculations across a set of rows that are related to the current row

    • They are often used for running totals, ranking, and moving averages

    • Examples of window functions include ROW_NUMBER(), RANK(),

  • Answered by AI
  • Q4. Solve sql problem using case statements

Interview Preparation Tips

Topics to prepare for Amdocs Data Engineer Intern interview:
  • Python
  • SQL
  • Big Data
Interview preparation tips for other job seekers - Have clear understanding of basics od any technology u are using. I was mostly asked about python and sql nd about big data tehcnologies.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Basic Python, SQL, and Bash questions

Round 2 - One-on-one 

(4 Questions)

  • Q1. SQL questions with operations that include changing from string to array. Tip: stick to RDBMS-specific dialects only (like Postgres), I used Spark SQL
  • Q2. Simple Python questions with a follow-up to optimise it
  • Q3. Bash script-based questions, are pretty basic.
  • Q4. Data pipeline design and best practices.
  • Ans. 

    Data pipeline design involves creating a system to efficiently collect, process, and analyze data.

    • Understand the data sources and requirements before designing the pipeline.

    • Use tools like Apache Kafka, Apache NiFi, or AWS Glue for data ingestion and processing.

    • Implement data validation and error handling mechanisms to ensure data quality.

    • Consider scalability and performance optimization while designing the pipeline.

    • Doc...

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. Easy to medium Leetcode-based question. With moderate difficulty.
  • Q2. Simple Python-based question with optimisation.
  • Q3. Design specific questions based on Data pipelines.
Round 4 - Behavioral 

(3 Questions)

  • Q1. SQL-based question with moderate difficulty.
  • Q2. Python-based questions, follow questions with some optimisations.
  • Q3. Bash-script based round.

Skills evaluated in this interview

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

It is nice to do work

Round 2 - Aptitude Test 

It helps in understanding the 5

Round 3 - Coding Test 

It helps a lot in company

Round 4 - Technical 

(5 Questions)

  • Q1. How to do job in company?
  • Q2. What I should do?
  • Q3. How to do work?
  • Q4. What should I do
  • Q5. What is the goal?
  • Ans. 

    The goal of a Data Analyst is to analyze data to extract valuable insights and make data-driven decisions.

    • Identify trends and patterns in data

    • Create visualizations to communicate findings

    • Provide actionable recommendations based on data analysis

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

It was related to Aptitude MCQ and 2-coding test

Round 2 - Technical 

(3 Questions)

  • Q1. Palindrome of a number
  • Ans. 

    A palindrome of a number is a number that remains the same when its digits are reversed.

    • To check if a number is a palindrome, reverse the number and compare it with the original number.

    • Examples: 121 is a palindrome, 123 is not a palindrome.

  • Answered by AI
  • Q2. Merge 2linked list
  • Ans. 

    Merging two linked lists involves combining the elements of both lists into a single list.

    • Create a new linked list to store the merged elements

    • Traverse through both linked lists and add elements to the new list

    • Handle cases where one list is longer than the other

  • Answered by AI
  • Q3. About projects you have done
Round 3 - HR 

(2 Questions)

  • Q1. Explain your resume fully
  • Q2. General questions on the behaviour

Skills evaluated in this interview

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

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

Round 1 - HR 

(1 Question)

  • Q1. Basicn details to check for qualifications
Round 2 - Technical 

(1 Question)

  • Q1. About my projects
Round 3 - Technical 

(1 Question)

  • Q1. More details about ML models
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There were 5 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic ml related questions,past project discussion
Round 2 - One-on-one 

(1 Question)

  • Q1. AI, ML related, statistical analysis of the graph.
Round 3 - Behavioral 

(1 Question)

  • Q1. Work culture, check
Round 4 - cross functional lob 

(1 Question)

  • Q1. Work culture, project discussion, scenario based questions
Round 5 - HR 

(1 Question)

  • Q1. Basic HR questions, why sap salary discussions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Cache vs persist
  • Ans. 

    Cache is used for temporary storage of data in memory, while persist is used for saving data to disk for long-term storage.

    • Cache is typically faster as it stores data in memory for quick access.

    • Persist saves data to disk for durability and long-term storage.

    • Cache is often used for temporary data that can be recomputed if lost, while persist is used for important data that needs to be retained.

    • Examples: Using cache for ...

  • Answered by AI
  • Q2. Broadcast join and other optimization techniques
Round 2 - One-on-one 

(4 Questions)

  • Q1. Sql window function
  • Q2. Spark architecture, dataframe vs rdd
  • Q3. Python reverse sentence
  • Ans. 

    Reverse a sentence using Python

    • Split the sentence into words using split() method

    • Reverse the list of words using list slicing

    • Join the reversed list of words back into a sentence using join() method

  • Answered by AI
  • Q4. Join based on nulls in sql

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Phonographic interview 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. What technology & tools u know ? And basic questions regarding that topics ?
Round 2 - Photographic interview 

(2 Questions)

  • Q1. Job culture and job responsibilities ?
  • Q2. Some questions on an analytical tools like power BI ?
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 Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About the project and technical aspect
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic of python , sql, pandas,niumpy
Round 2 - Technical 

(1 Question)

  • Q1. Gave me a task to make web app for medical condition detection after clearing first round asked questions relted to it

Amdocs Interview FAQs

How many rounds are there in Amdocs Data Engineer Intern interview?
Amdocs interview process usually has 3 rounds. The most common rounds in the Amdocs interview process are Resume Shortlist, Coding Test and One-on-one Round.
What are the top questions asked in Amdocs Data Engineer Intern interview?

Some of the top questions asked at the Amdocs Data Engineer Intern interview -

  1. what are window functions in ...read more
  2. sort a list in pyt...read more
  3. 1v1 round with the manager. he focused on my problem solving mindset. gave some...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Google Interview Questions
4.4
 • 847 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
View all
Software Developer
7.6k salaries
unlock blur

₹4.9 L/yr - ₹16.9 L/yr

Software Engineer
1.9k salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Softwaretest Engineer
1.7k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹4 L/yr - ₹12.1 L/yr

Associate Software Engineer
1k salaries
unlock blur

₹3.2 L/yr - ₹12 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.7
Compare

IBM

4.0
Compare

Infosys

3.7
Compare

Wipro

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