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, Process, and Tips

Updated 3 Mar 2025

Top Amdocs Interview Questions and Answers

View all 403 questions

Amdocs Interview Experiences

Popular Designations

514 interviews found

Tester Interview Questions & Answers

user image Priyanka Bhosale

posted on 8 May 2024

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

(1 Question)

  • Q1. Basic core java, selenium, algorithms, programs

Tester Interview Questions asked at other Companies

Q1. What is Sdlc and stlc. What is rtm. Diff bet severity n priority. What is scrum. What is burn down chart. What is verification n validation. What is testplan, testcase n test scenario. How testplan looks like. Steps of sdlc elaborate.
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Challenginng questions for coding round

Top Amdocs Software Developer Interview Questions and Answers

Q1. First Unique Character in a Stream Problem Statement Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters. Example: Input: bbaca Output: baaac Explan... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Software Developer Interview Questions & Answers

user image harshit singh

posted on 4 Apr 2024

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

(1 Question)

  • Q1. Easy and simple DSA question
Round 2 - HR 

(1 Question)

  • Q1. About your experience and behavioural question

Top Amdocs Software Developer Interview Questions and Answers

Q1. First Unique Character in a Stream Problem Statement Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters. Example: Input: bbaca Output: baaac Explan... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Explain the concepts of OOPs in a code
  • Ans. 

    OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction in code.

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

    • Inheritance: Allowing a new class to inherit properties and behavior from an existing class.

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

    • Abstraction: Hiding the implementation details and showing only t

  • Answered by AI

Top Amdocs Software Developer Interview Questions and Answers

Q1. First Unique Character in a Stream Problem Statement Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters. Example: Input: bbaca Output: baaac Explan... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Amdocs interview questions for popular designations

 Software Developer

 (135)

 Associate Software Engineer

 (51)

 Software Engineer

 (43)

 Functional Test Engineer

 (15)

 RF Engineer

 (13)

 Softwaretest Engineer

 (12)

 Senior Software Engineer

 (9)

 Devops Engineer

 (8)

Technical Lead Interview Questions & Answers

user image Piyush Garg

posted on 19 May 2024

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

(1 Question)

  • Q1. How do you solve p1 issue
  • Ans. 

    To solve a P1 issue, I prioritize the problem, gather necessary resources, collaborate with team members, and implement a quick and effective solution.

    • Prioritize the issue based on impact and urgency

    • Gather necessary resources such as logs, documentation, and relevant team members

    • Collaborate with team members to brainstorm and troubleshoot

    • Implement a quick and effective solution to resolve the P1 issue

    • Communicate with s...

  • Answered by AI

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Get interview-ready with Top Amdocs Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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. Explain the Kubernetes architecture
  • Ans. 

    Kubernetes architecture is a container orchestration platform that manages containerized applications across a cluster of nodes.

    • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

    • Nodes communicate with each oth...

  • Answered by AI
  • Q2. Write the terraform script
  • Ans. 

    Writing a terraform script for infrastructure provisioning

    • Define provider and required variables

    • Create resources like instances, networks, and storage

    • Use modules for reusable code

    • Implement variables and outputs for flexibility

    • Leverage terraform state for tracking changes

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Write the dockerfile
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Start with a base image

    • Use the RUN instruction to execute commands

    • Use the COPY instruction to add files from your Docker client’s current directory

    • Use the CMD instruction to specify the command to run when the container starts

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard

Skills evaluated in this interview

Top Amdocs Devops Engineer Interview Questions and Answers

Q1. What are the two health checks when EC2 instance is launched?
View answer (1)

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (3)

Jobs at Amdocs

View all

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Oct 2023

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

I applied via Campus Placement and was interviewed in Sep 2023. 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 

Questions on Operating System, DataBase Management System, Object Oriented programming Skills and a coding question which was of easy to medium difficulty.

Round 3 - Technical 

(1 Question)

  • Q1. Started with introduction, and asked about the concepts of DBMS/SQL, OOPs, and basic of data structure and algorithms.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident and through with your resume as you would be put questions on the projects you have written.

Sdet Engineer Interview Questions asked at other Companies

Q1. Tell me about the projects and knowledge on selenium api and etc?
View answer (2)

Software Engineer Interview Questions & Answers

user image Gangadhar Chevula

posted on 1 Mar 2024

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

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. How to install weblogic software
  • Ans. 

    Weblogic software can be installed by downloading the installer, running the installation wizard, configuring settings, and starting the server.

    • Download the Weblogic software installer from the official website

    • Run the installer and follow the installation wizard prompts

    • Configure settings such as domain creation, server settings, and security configurations

    • Start the Weblogic server to begin using the software

  • Answered by AI

Top Amdocs Software Engineer Interview Questions and Answers

Q1. Reverse Stack with Recursion Reverse a given stack of integers using recursion. You must accomplish this without utilizing extra space beyond the internal stack space used by recursion. Additionally, you must refrain from using any loop con... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (199)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2023. 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 

(1 Question)

  • Q1. In depth mlops process, explaining about recent project.
Round 3 - Technical 

(1 Question)

  • Q1. More in-depth machine learning projects

Senior Technical Architect Interview Questions asked at other Companies

Q1. How ErrorHandling is done in your project?
View answer (1)
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 Oct 2023. 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 

(1 Question)

  • Q1. Having question related to rest,excepton
Round 3 - Coding Test 

Coding related to iterator,project related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep updated with your resume crisply

Top Amdocs Software Developer Interview Questions and Answers

Q1. First Unique Character in a Stream Problem Statement Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters. Example: Input: bbaca Output: baaac Explan... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

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. Puzzle:- you have two jars 3L and 5L and unlimited supply of water. How will yo...read more
  2. What is sdlc stlc waterfall model,smoke testing, black box testing, what is qua...read more
  3. 1)How to run failed test case: using failed.xml 2)how to use click in diff ways...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.

Amdocs Interview Process

based on 356 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
View all

Amdocs Reviews and Ratings

based on 4k reviews

3.7/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.5

Salary

3.5

Job security

3.8

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 4k Reviews and Ratings
Software Engineer

Pune

2-5 Yrs

₹ 5.05-15.95 LPA

Information Security Lead

Pune

2-7 Yrs

Not Disclosed

DevOps Engineer

Pune

1-6 Yrs

₹ 3.6-18.9 LPA

Explore more jobs
Software Developer
8.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
956 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.7
Compare

IBM

4.0
Compare

Infosys

3.6
Compare

Wipro

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