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 Software Developer Interview Questions, Process, and Tips

Updated 21 Feb 2025

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 ...read more
  • Q2. Find the Third Greatest Element Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array. Input: The first line contains a single ...read more
  • Q3. Palindromic Substrings Problem Statement Given a string S , your task is to return all distinct palindromic substrings of the given string in alphabetical order. Explana ...read more
View all 107 questions

Amdocs Software Developer Interview Experiences

135 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contains mcq which we have to do in given time period.

Round 2 - Technical 

(1 Question)

  • Q1. In this interviewr ask me about sql querries and many more
Round 3 - HR 

(1 Question)

  • Q1. In this round he asks me about family background and my interest.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Aug 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 

It had question regarding maths,word problem, verbal etc.Avg questions

Round 3 - Technical 

(1 Question)

  • Q1. It was regarding java, spring boot, rest api.Not tough

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Joins,views, procedure, function

Round 2 - Technical 

(5 Questions)

  • Q1. Dynamic SQL and queries
  • Q2. Plsql procedure
  • Ans. 

    PL/SQL is a procedural language extension for SQL in Oracle databases.

    • PL/SQL stands for Procedural Language/Structured Query Language.

    • It is used to create stored procedures, functions, triggers, and packages in Oracle databases.

    • PL/SQL code is executed on the server side, providing better performance compared to SQL statements executed on the client side.

  • Answered by AI
  • Q3. Performance tuning
  • Q4. Joins in detail with 100 line code for review
  • Ans. 

    Explanation of joins in SQL with 100 line code example

    • Joins are used in SQL to combine rows from two or more tables based on a related column between them

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

  • Answered by AI
  • Q5. Procedure and trigger
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at MAEER's MIT College of Engineering, Pune and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

General questions about maths, problem solving, puzzles

Round 2 - Technical 

(2 Questions)

  • Q1. What is inheritance
  • Q2. What is interfaces and demonstrate by example
Round 3 - HR 

(2 Questions)

  • Q1. Tell me something about yourself
  • Q2. Why should we hire you

Amdocs interview questions for designations

 Senior Software Developer

 (4)

 Advanced Software Developer

 (4)

 Associate Software Developer

 (3)

 Junior Software Developer

 (1)

 Full Stack Software Developer

 (1)

 Software Engineer

 (43)

 Software Tester

 (5)

 Software Architect

 (2)

Software Developer Interview Questions & Answers

user image Kousar Azhar

posted on 21 Feb 2025

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

I was interviewed before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. All about java, authentication, kubernetes
  • Q2. Related projects
Round 2 - HR 

(1 Question)

  • Q1. About manage work load,team work, salary expected

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with latest technology

Get interview-ready with Top Amdocs Interview Questions

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

I applied via Recruitment Consulltant and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1. They ask basic java questions
2. Palindrome and Fibonacci series

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Salary expectations
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1 easy coding question

Round 2 - One-on-one 

(2 Questions)

  • Q1. SQl and unix basic questions
  • Q2. C coding question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy, mainly English proficiency needed

Round 2 - Coding Test 

Fair Coding Level and, Standard needed

Round 3 - Technical 

(2 Questions)

  • Q1. What is a dangling pointer
  • Ans. 

    A dangling pointer is a pointer that points to a memory location that has been deallocated, leading to potential crashes or undefined behavior.

    • Dangling pointers can occur when memory is freed but the pointer is not set to NULL.

    • Accessing a dangling pointer can result in accessing invalid memory.

    • Example: int* ptr = new int; delete ptr; // ptr is now a dangling pointer

  • Answered by AI
  • Q2. Differentiate between null pointer and, dangling pointer
  • Ans. 

    Null pointer points to nothing, while dangling pointer points to memory that has been deallocated.

    • Null pointer is a pointer that does not point to any memory location.

    • Dangling pointer is a pointer that points to memory that has been deallocated.

    • Accessing a null pointer will result in a segmentation fault.

    • Accessing a dangling pointer can lead to unpredictable behavior or crashes.

    • Example: int* nullPtr = nullptr; int* dan...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What would be your Expected CTC?
  • Ans. 

    My expected CTC would depend on the job role, company size, location, and benefits package.

    • Consider the job role and responsibilities when determining expected CTC.

    • Research industry standards and average salaries for similar positions.

    • Factor in the company size and location, as cost of living varies.

    • Take into account additional benefits such as healthcare, retirement plans, and bonuses.

    • Be prepared to negotiate based on

  • Answered by AI
  • Q2. Can the joining date be any sooner by shortening the notice period?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, cool, composed and, honest.
It's just an interview.
If not this company then might be any other company.
Don't panic or, freight or, get demoralised/demotivated/down.

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 before Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Online Aptitute and coding round

Round 2 - Coding Test 

Asked questions related to java and sql

Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Interview Preparation Tips

Topics to prepare for Amdocs Software Developer interview:
  • Java
  • Spring Boot
  • SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Online Test 1hr based on LC Easy to Medium questions.

Round 2 - HR 

(2 Questions)

  • Q1. Questions Based on Microservices
  • Q2. Questions Based on Core Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Company focus on Java technology more.

Amdocs Interview FAQs

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

Some of the top questions asked at the Amdocs Software Developer interview -

  1. Puzzle:- you have two jars 3L and 5L and unlimited supply of water. How will yo...read more
  2. What is singleton calss?Write a program to make a class singlet...read more
  3. Challenges faced in your RPA experience and how you resolved ...read more
How long is the Amdocs Software Developer interview process?

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

Tell us how to improve this page.

Amdocs Software Developer Interview Process

based on 86 interviews

4 Interview rounds

  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
View more
Amdocs Software Developer Salary
based on 8.2k salaries
₹5 L/yr - ₹17 L/yr
35% more than the average Software Developer Salary in India
View more details

Amdocs Software Developer Reviews and Ratings

based on 910 reviews

3.6/5

Rating in categories

3.2

Skill development

3.6

Work-life balance

3.3

Salary

3.5

Job security

3.8

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 910 Reviews and Ratings
Software Developer
8.2k salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Software Engineer
1.9k salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Softwaretest Engineer
1.7k salaries
unlock blur

₹3.8 L/yr - ₹14 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 L/yr - ₹12 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