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 Interview Questions and Answers

Updated 30 Jun 2025
Popular Designations

387 Interview questions

A Fiber Planning Engineer was asked 11mo ago
Q. What are your strengths?
Ans. 

My strengths include strong analytical skills, attention to detail, and excellent problem-solving abilities.

  • Strong analytical skills - able to analyze complex data and identify patterns

  • Attention to detail - meticulous in planning and executing fiber network designs

  • Excellent problem-solving abilities - adept at finding creative solutions to challenges

View all Fiber Planning Engineer interview questions
A Fiber Planning Engineer was asked 11mo ago
Q. What is the minimum and maximum depth of bore and trench?
Ans. 

The minimum and maximum depth of bore and trench varies depending on the specific project requirements and local regulations.

  • Minimum depth of bore and trench is typically around 24 inches to ensure proper protection and support for the fiber optic cables.

  • Maximum depth of bore and trench can range from 36 inches to 60 inches, depending on factors such as soil conditions, road crossings, and utility clearances.

  • Local...

View all Fiber Planning Engineer interview questions
A Fiber Planning Engineer was asked 11mo ago
Q. What is the difference between Boring and Trenching?
Ans. 

Boring involves drilling a hole underground for installation, while trenching involves digging a trench for laying cables or pipes.

  • Boring involves drilling a hole underground using specialized equipment, while trenching involves digging a trench using machinery like excavators.

  • Boring is typically used when minimal disruption to the surface is desired, while trenching is used when a larger area needs to be excavate...

View all Fiber Planning Engineer interview questions
A Software Developer was asked 11mo ago
Q. Name any three annotations and explain how they work.
Ans. 

Annotations in Java are used to provide metadata about a program, which can be used by the compiler or at runtime.

  • 1. @Override - Indicates that a method overrides a method in its superclass.

  • 2. @Deprecated - Marks a method as deprecated, meaning it should no longer be used.

  • 3. @SuppressWarnings - Suppresses compiler warnings for a given part of the code.

View all Software Developer interview questions

What people are saying about Amdocs

View All
a software engineer iii
1w
Urgent advice required!!!
Which company is best to join Hsbc direct offer - annual bonus Amdocs offer from third party - No annual bonus Role : Senior Software Engineer Pay is almost same I have 3 yrs of experience and looking for career growth, which organization would be better to join. #urgent #careers # growth
Got a question about Amdocs?
Ask anonymously on communities.
A Software Developer was asked 11mo ago
Q. What is Spring Boot?
Ans. 

Spring Boot is a Java-based framework used for creating standalone, production-grade Spring-based Applications.

  • Spring Boot simplifies the process of creating Spring applications by providing a set of default configurations.

  • It allows developers to quickly set up and run standalone Spring applications with minimal configuration.

  • Spring Boot includes embedded servers like Tomcat, Jetty, or Undertow, making it easy to ...

View all Software Developer interview questions
A Senior Software Developer was asked 12mo ago
Q. Design a parking system.
Ans. 

Design a system for parking management

  • Include features for vehicle registration and tracking

  • Implement payment processing for parking fees

  • Utilize sensors for real-time parking availability updates

View all Senior Software Developer interview questions
A Senior Software Developer was asked 12mo ago
Q. Write code to reverse a linked list.
Ans. 

Code to reverse a linked list

  • Create three pointers: prev, current, next

  • Iterate through the linked list, updating pointers accordingly

  • Set the next pointer of current to prev to reverse the list

View all Senior Software Developer interview questions
Are these interview questions helpful?
A RF Engineer was asked 12mo ago
Q. What are the roles of RF engineers?
Ans. 

RF engineers design, develop, test, and maintain radio frequency systems and components.

  • Designing RF systems and components

  • Developing RF technology

  • Testing RF equipment

  • Maintaining RF systems

  • Troubleshooting RF issues

  • Collaborating with other engineers and teams

View all RF Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. Implement a stack using one or more queues.
Ans. 

Implementing a stack using two queues

  • Use two queues to simulate a stack

  • Push operation: Enqueue the element to queue 1

  • Pop operation: Dequeue all elements from queue 1 to queue 2, dequeue the last element from queue 1, then swap the queues

  • Top operation: Return the front element of queue 1

  • Example: Push 1, 2, 3 - Queue 1: [1, 2, 3], Queue 2: []

  • Example: Pop - Queue 1: [1, 2], Queue 2: [3]

View all Senior Software Engineer interview questions
A Software Engineer was asked 12mo ago
Q. When should microservices be used?
Ans. 

Microservices are best used when you have a large, complex application that can be broken down into smaller, independent services.

  • Use microservices when you need to scale different parts of your application independently.

  • Microservices are beneficial when you have multiple teams working on different services.

  • They are useful when you want to adopt different technologies for different services.

  • Microservices can impro...

View all Software Engineer interview questions

Amdocs Interview Experiences

532 interviews found

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

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

Round 1 - Assignment 

Basic self evaluation test.

Round 2 - Technical 

(3 Questions)

  • Q1. What project I have completed and follow-up questions on that?
  • Q2. How to handle class imbalance.
  • Ans. 

    Handling class imbalance involves techniques like resampling, using different algorithms, and adjusting class weights.

    • Use resampling techniques like oversampling or undersampling to balance the classes.

    • Utilize algorithms that are robust to class imbalance, such as Random Forest, XGBoost, or SVM.

    • Adjust class weights in the model to give more importance to minority class.

    • Use evaluation metrics like F1 score, precision, r...

  • Answered by AI
  • Q3. Basic Python coding questions.
Round 3 - Technical 

(2 Questions)

  • Q1. Data-related questions.
  • Q2. ML Ops questions.

Interview Preparation Tips

Topics to prepare for Amdocs Data Scientist interview:
  • Python
  • MLOPS
Interview preparation tips for other job seekers - Prepare your projects well. And be ready for basic python coding questions. Prepare MlOps roles as well.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. How was your role in your previous company
  • Ans. 

    In my previous role, I was a software engineer focused on developing scalable applications and collaborating with cross-functional teams.

    • Led a team of 5 engineers to develop a web application that improved user engagement by 30%.

    • Implemented Agile methodologies, resulting in a 20% increase in project delivery speed.

    • Collaborated with product managers to gather requirements and translate them into technical specifications...

  • Answered by AI
  • Q2. What do you know about relational db
  • Ans. 

    Relational databases store data in structured tables, allowing for complex queries and relationships between data entities.

    • Data is organized in tables (e.g., Customers, Orders) with rows and columns.

    • Each table has a primary key that uniquely identifies each record (e.g., CustomerID).

    • Tables can be related through foreign keys, enabling data integrity (e.g., Order table referencing CustomerID).

    • SQL (Structured Query Langu...

  • Answered by AI

PMO Lead Interview Questions & Answers

user image Anonymous

posted on 3 Mar 2025

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

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(1 Question)

  • Q1. What is the hierarchy in JIRA?
  • Ans. 

    JIRA hierarchy includes Boards, Projects, Issues, Epics, Stories, and Sub-tasks.

    • Boards are used to visualize and manage work in progress.

    • Projects contain issues and can be broken down into Epics, Stories, and Sub-tasks.

    • Epics are large bodies of work that can be broken down into Stories.

    • Stories represent individual units of work that can be further broken down into Sub-tasks.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is the concept of risk management?
  • Ans. 

    Risk management is the process of identifying, assessing, and prioritizing risks followed by coordinated and economical application of resources to minimize, monitor, and control the probability and impact of unfortunate events.

    • Identifying potential risks that could impact the project or organization

    • Assessing the likelihood and impact of each risk

    • Prioritizing risks based on their potential impact

    • Developing strategies t...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

1 coding question and MCQ on CS fundamentals were asked.

Round 2 - Technical 

(3 Questions)

  • Q1. Questions were on my project. It was a full stack project on MERN. I was asked about non blocking IO, promises, alternatives to react.
  • Q2. I was asked a DSA question to find the set of element that occurs twice in the array. I was expected to run the code.
  • Ans. 

    Find elements that appear exactly twice in an array using efficient algorithms.

    • Use a hash map to count occurrences of each element.

    • Iterate through the map to collect elements with a count of 2.

    • Example: For array [1, 2, 3, 2, 1], the output is [1, 2].

    • Time complexity is O(n) and space complexity is O(n).

  • Answered by AI
  • Q3. I was asked basics about cloud and if I have any related experience as the role would be devops.
Round 3 - HR 

(1 Question)

  • Q1. I was asked basics questions about myself. It was a very short 15 minute interview.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Data structure related question

Round 2 - Technical 

(4 Questions)

  • Q1. Quesitions related to data structure, cloud
  • Q2. Find the second highest integer
  • Q3. Question related to two sum
  • Q4. Some sliding window problems
Round 3 - HR 

(1 Question)

  • Q1. General Behavioral Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the basics

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2025

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

Agenda could be anything but prepration should be in essential pointers

Round 2 - Technical 

(1 Question)

  • Q1. Tricky related to the any technical skills set
Round 3 - HR 

(1 Question)

  • Q1. What has been your duration of employment with the organization?
  • Ans. 

    I have been employed with the organization for 5 years.

    • Employed for 5 years

    • Started in entry-level position and progressed to current role

    • Received promotions and increased responsibilities over time

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be promot with the answer and smartly
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Core Java (OOPS, basic core java question)
  • Q2. Java8 feature questions
  • Q3. Linux Command Questions
  • Q4. Spring boot questions (annotations, bean scopes, DI)
  • Q5. Write a Junit test case
Round 2 - Technical 

(3 Questions)

  • Q1. It was technical plus managerial round
  • Q2. Mostly question is asked on resume, so please be mindful while putting anything on resume as you need to justify each thing
  • Q3. Why you want to join amdocs?

Associate Software Engineer Interview Questions & Answers

user image Avronil Chakraborty

posted on 15 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Programming MCQ's
  • Q2. Coding and SQL Questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Coding Question
  • Q2. Questions based on projects done in college
Round 3 - HR 

(2 Questions)

  • Q1. Basic Introduction
  • Q2. Family Background

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your fundamentals strong

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Dec 2024

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

(3 Questions)

  • Q1. What is bigadata
  • Ans. 

    Big data refers to large and complex data sets that are difficult to process using traditional data processing applications.

    • Big data involves large volumes of data

    • It includes data from various sources such as social media, sensors, and business transactions

    • Big data requires specialized tools and technologies for processing and analysis

  • Answered by AI
  • Q2. How spark works
  • Ans. 

    Spark is a distributed computing framework that processes big data in memory and is known for its speed and ease of use.

    • Spark is a distributed computing framework that can process data in memory for faster processing.

    • It uses Resilient Distributed Datasets (RDDs) for fault-tolerant distributed data processing.

    • Spark provides high-level APIs in Java, Scala, Python, and R for ease of use.

    • It supports various data sources li...

  • Answered by AI
  • Q3. Explain your application
  • Ans. 

    Our application is a data engineering platform that processes and analyzes large volumes of data to provide valuable insights.

    • Our application uses various data processing techniques such as ETL (Extract, Transform, Load) to clean and transform raw data into usable formats.

    • We utilize big data technologies like Hadoop, Spark, and Kafka to handle large datasets efficiently.

    • The application also includes machine learning al...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on basic. And have clear understanding of concepts , accept what you dont know and show attitude to learn and work on require skill
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the key concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and showing onl...

  • Answered by AI
  • Q2. What is the internal working mechanism of a HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple keys hash to the same index (collision), a linked list is used to store these pairs.

    • To retrieve a value, t...

  • Answered by AI

Amdocs Interview FAQs

How many rounds are there in Amdocs interview?
Amdocs interview process usually has 2-3 rounds. The most common rounds in the Amdocs interview process are Technical, HR and Coding Test.
How to prepare for Amdocs 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 microsoft, Amdocs, Computer science, Technical Support and Unix.
What are the top questions asked in Amdocs interview?

Some of the top questions asked at the Amdocs interview -

  1. What is sdlc stlc waterfall model,smoke testing, black box testing, what is qua...read more
  2. Which is a best technique to generate automated test repor...read more
  3. Puzzle:- you have two jars 3L and 5L and unlimited supply of water. How will yo...read more
What are the most common questions asked in Amdocs HR round?

The most common HR questions asked in Amdocs interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Where do you see yourself in 5 yea...read more
How long is the Amdocs interview process?

The duration of Amdocs interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 372 interview experiences

Difficulty level

Easy 17%
Moderate 78%
Hard 5%

Duration

Less than 2 weeks 70%
2-4 weeks 24%
4-6 weeks 5%
6-8 weeks 1%
More than 8 weeks 2%
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 892 Interviews
Google Interview Questions
4.4
 • 892 Interviews
Microsoft Corporation Interview Questions
3.9
 • 574 Interviews
Zoho Interview Questions
4.3
 • 533 Interviews
Carelon Global Solutions Interview Questions
3.9
 • 380 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce Interview Questions
4.0
 • 233 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
View all

Amdocs Reviews and Ratings

based on 4.3k reviews

3.7/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.4

Salary

3.5

Job security

3.8

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 4.3k Reviews and Ratings
Fiber Engineer(FTTH.OSP,FIBER)

Pune,

Gurgaon / Gurugram

2-7 Yrs

₹ 3.5-12 LPA

Software Architect

Pune

10-20 Yrs

₹ 35-45 LPA

Professional Service Specialist

Pune

5-9 Yrs

₹ 20-30 LPA

Explore more jobs
Software Developer
8.5k salaries
unlock blur

₹5 L/yr - ₹17.7 L/yr

Software Engineer
1.9k salaries
unlock blur

₹4.5 L/yr - ₹17 L/yr

Softwaretest Engineer
1.8k salaries
unlock blur

₹3.8 L/yr - ₹14.5 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹4 L/yr - ₹12.3 L/yr

Associate Software Engineer
1k salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.6
Compare

IBM

4.0
Compare

Oracle

3.7
Compare

Carelon Global Solutions

3.9
Compare
write
Share an Interview