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

Updated 20 Jan 2025

Top Amdocs Associate Software Engineer Interview Questions and Answers

  • Q1. Maximum Sum Increasing Subsequence of Length K Problem Statement You are given an array NUMS consisting of N integers and an integer K. Your task is to determine the max ...read more
  • Q2. First Unique Character in a String Problem Statement Given a string STR consisting of lowercase English letters, identify the first non-repeating character in the string ...read more
  • Q3. Implement Atoi Function You have a string 'STR' of length 'N'. Your task is to implement the atoi function, which converts the string into an integer. If the string does ...read more
View all 60 questions

Amdocs Associate Software Engineer Interview Experiences

50 interviews found

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

I was interviewed before Jun 2023.

Round 1 - Coding Test 

They usually ask fundamental question like, palindrome, string inversion etc.

Round 2 - Technical 

(2 Questions)

  • Q1. Will ask about your projects
  • Q2. SQL question majorly focusing on Join
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude and reasoning

Round 2 - Coding Test 

Intermediate String questions.
Buy and sell stocks.
Second largest salary SQL.
Basic linux commands.

Round 3 - HR 

(2 Questions)

  • Q1. What are your strength and weaknesses
  • Q2. Why you want to join amdocs

Interview Preparation Tips

Interview preparation tips for other job seekers - In amdocs,the difficulty of interview depends on the role hired for. It will be hard for development projects and easy for support roles.
Be ready with Basic DSA and SQL with intermediate level of Java/C++/python

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more

I applied via campus placement at National Institute of Engineering (NIE) and was interviewed in Mar 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was quite hard because the platform does not have questions which are in online

Round 2 - Coding Test 

There are 5 questions 3 programming questions and 2 Sql Queries

Round 3 - Technical 

(2 Questions)

  • Q1. The interviewer was good he asked questions on java sql and linux
  • Q2. Introduction ,Oops concept, types of join ,about project, linux commands
Round 4 - HR 

(1 Question)

  • Q1. Introduction , strength and , weakness why amdocs, about relocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with the answers if its wrong or write in case the interviewer needs u to answer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Thapar Institute of Engineering and Technology (TIET) and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

It consisted of MCQ questions related to sql, dbms, OS and computer networking. And then 2 easy level coding questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about the projects mentioned in my résumé and questions related to java and sql joins
Round 3 - HR 

(1 Question)

  • Q1. Asked me for my introduction and basic hr questions like describe your strengths and weaknesses and why do you want to join Amdocs and if you will be leaving for higher studies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare whatever you have written in your résumé. It’s okay if you aren’t very confident when you start your interview but you will feel better once it starts and you feel that you know the answers.

Amdocs interview questions for designations

 Software Associate

 (1)

 Associate Software Developer

 (3)

 Software Engineer

 (43)

 Senior Software Engineer

 (9)

 Software Testing Engineer

 (4)

 Software Engineer II

 (1)

 Software Development Engineer

 (1)

 Junior Software Engineer

 (1)

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

I applied via campus placement at Visvesvaraya National Institute of Technology (VNIT), Nagpur and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. 1. Debugging question in C
  • Q2. 10 words stating with letter "q"
Round 2 - HR 

(1 Question)

  • Q1. Location conformation asked via phone

Get interview-ready with Top Amdocs Interview Questions

Round 1 - Aptitude Test 

Mcq questions math c c c c c c c c v v v v v v v v

Round 2 - One-on-one 

(1 Question)

  • Q1. Unix commands, basic coding question, basic friendly interaction, hypothetical situation based question etc etc etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, have technical one word answer ontips, have basic coding knowledge & talk in friendly way
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and grammar questions. Difficulty level not too hard.

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions about the technology you are applying for. May ask you to run few very basic program's.
Round 3 - HR 

(1 Question)

  • Q1. Company policies and commitment questions.

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

This was an online coding round where we had 2 questions to solve under 90 minutes . Both the questions were of easy to medium difficulty .

  • Q1. 

    Maximum Sum Increasing Subsequence of Length K Problem Statement

    You are given an array NUMS consisting of N integers and an integer K. Your task is to determine the maximum sum of an increasing subsequen...

  • Ans. 

    Find the maximum sum of an increasing subsequence of length K in an array.

    • Iterate through the array and maintain a dynamic programming table to store the maximum sum of increasing subsequences of different lengths.

    • For each element, check all previous elements to find the increasing subsequences and update the maximum sum accordingly.

    • Return the maximum sum of the increasing subsequence of length K.

    • Example: For input [1,...

  • Answered by AI
  • Q2. 

    First Unique Character in a String Problem Statement

    Given a string STR consisting of lowercase English letters, identify the first non-repeating character in the string and return it. If no such characte...

  • Ans. 

    Identify the first non-repeating character in a given string and return it, or '#' if none exists.

    • Iterate through the string to count the frequency of each character

    • Iterate through the string again to find the first character with frequency 1

    • Return the first non-repeating character or '#' if none exists

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round consisted of questions from DS/Algo , OOPS and Operating Systems primarily usage of some basic UNIX commands .

  • Q1. 

    Implement Atoi Function

    You have a string 'STR' of length 'N'. Your task is to implement the atoi function, which converts the string into an integer. If the string does not contain any numbers, the funct...

  • Ans. 

    Implement a function to convert a string to an integer, ignoring non-numeric characters and considering negative numbers.

    • Iterate through the characters of the string and check if they are numeric.

    • Handle negative numbers by checking the first character of the string.

    • Ignore non-numeric characters while converting the string to an integer.

    • Return 0 if there are no numbers in the string.

    • Ensure the resulting number is within

  • Answered by AI
  • Q2. Can you explain run time polymorphism in C++?
  • Ans. 

    Run time polymorphism in C++ allows objects of different classes to be treated as objects of a common parent class.

    • Run time polymorphism is achieved through virtual functions and function overriding.

    • It allows a function to behave differently based on the object it is called on.

    • Example: Using a base class pointer to call a virtual function that is overridden in a derived class.

  • Answered by AI
  • Q3. What is a friend function in C++?
  • Ans. 

    A friend function in C++ is a function that is not a member of a class but has access to the private and protected members of the class.

    • Friend functions are declared inside a class with the keyword 'friend'.

    • They can access private and protected members of the class they are friends with.

    • Friend functions are not member functions of the class.

    • Example: friend void displayDetails(Student);

  • Answered by AI
  • Q4. Can you explain any 5 essential UNIX commands?
  • Ans. 

    Essential UNIX commands include ls, cd, pwd, mkdir, and rm.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • mkdir - make directory

    • rm - remove files or directories

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. Why do you want to work at Amdocs?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAmdocs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Nov 2022. There were 5 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 

50 Marks medium questions

Round 3 - Coding Test 

2 Coding and 1 Sql question

Round 4 - Technical 

(1 Question)

  • Q1. Technical round with tech lead
Round 5 - HR 

(1 Question)

  • Q1. Basic HR Questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Java and Spring boot concepts and along with 1 coding problem
Round 3 - HR 

(1 Question)

  • Q1. Why Amdocs? and basic HR questions

Amdocs Interview FAQs

How many rounds are there in Amdocs Associate Software Engineer 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 Associate Software Engineer 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 Amdocs, Continuous Improvement, Technical Support, Application Software and Computer science.
What are the top questions asked in Amdocs Associate Software Engineer interview?

Some of the top questions asked at the Amdocs Associate Software Engineer interview -

  1. How to convert a string containing a number into integer without using inbuilt ...read more
  2. What is right outer join and it's use in real world scena...read more
  3. What is recursion?Explain it graphically?How compiler executed recursi...read more
How long is the Amdocs Associate Software Engineer interview process?

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

Tell us how to improve this page.

Amdocs Associate Software Engineer Interview Process

based on 35 interviews

4 Interview rounds

  • Coding Test Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
View more
Amdocs Associate Software Engineer Salary
based on 1k salaries
₹3 L/yr - ₹12 L/yr
32% more than the average Associate Software Engineer Salary in India
View more details

Amdocs Associate Software Engineer Reviews and Ratings

based on 119 reviews

3.5/5

Rating in categories

3.1

Skill development

3.4

Work-life balance

3.3

Salary

3.7

Job security

3.8

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 119 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