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

Updated 28 Mar 2025

64 Interview questions

An Associate Software Engineer was asked
Q. Write a query to find the second highest salary in a table.
Ans. 

To find the second highest salary, we can use SQL queries with various approaches like subqueries or the DISTINCT keyword.

  • Use a subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

  • Use DISTINCT: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

  • Use ROW_NUMBER(): SELECT salary FROM (SELECT salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rank...

An Associate Software Engineer was asked
Q. How can you swap two character variables without using a third variable?
Ans. 

Swapping two character variables without using third

  • Use XOR operator to swap two variables without using third variable

  • Assign the XOR of both variables to the first variable

  • Assign the XOR of the first variable and second variable to the second variable

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
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
An Associate Software Engineer was asked
Q. What is python and constructer ,arrays,data structures
Ans. 

Python is a high-level programming language known for its simplicity and readability. Constructors are special methods used to initialize objects in classes.

  • Python is a versatile programming language used for web development, data analysis, artificial intelligence, and more.

  • Constructors in Python are special methods with the __init__() function that initialize objects when they are created.

  • Arrays in Python are dat...

An Associate Software Engineer was asked
Q. Addition and Deletion of a node in binary tree?
Ans. 

Addition and Deletion of a node in binary tree

  • For addition, traverse the tree to find the appropriate position and add the new node as a leaf

  • For deletion, find the node to be deleted and replace it with its successor or predecessor

  • In case of deletion, if the node has two children, find the inorder successor and replace it with the node to be deleted

What people are saying about Amdocs

View All
a software engineer
6d
Making a Career Move — Safe Bet or Fast Track?
I’m a Software Developer with 4 years of experience and currently facing a tough career decision. I have two job offers: One is from a large, stable, and reliable organization with a strong brand, structured processes, and good work-life balance. The other is from a smaller, fast-growing company that promises faster learning, more responsibilities, and slightly better pay, but comes with uncertainty and less stability. At this stage of my career, should I prioritize stability and long-term security, or go for rapid growth and technical exposure? Would appreciate insights from anyone who’s made a similar choice — what path did you take, and how did it shape your career?
Got a question about Amdocs?
Ask anonymously on communities.
An Associate Software Engineer was asked
Q. What is recursion?Explain it graphically?How compiler executed recursion?
Ans. 

Recursion is a process in which a function calls itself repeatedly until a base condition is met.

  • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

  • It uses a stack to keep track of function calls and their parameters.

  • Examples include factorial, Fibonacci sequence, and binary search.

  • Compiler executes recursion by allocating memory for each function call and storing the ...

An Associate Software Engineer was asked 10mo ago
Q. Joins and their use.
Ans. 

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

  • Joins are used to retrieve data from multiple tables based on a related column.

  • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • INNER JOIN returns rows when there is at least one match in both tables.

  • LEFT JOIN returns all rows from the left table and the matched rows from the rig...

An Associate Software Engineer was asked
Q. Libraries and packages in python
Ans. 

Libraries and packages in Python are reusable collections of code that provide functionality to perform specific tasks.

  • Libraries and packages help in reducing the amount of code that needs to be written from scratch

  • Popular libraries in Python include NumPy for numerical computing, Pandas for data manipulation, and Matplotlib for data visualization

  • Packages can be installed using package managers like pip or conda

Are these interview questions helpful?
An Associate Software Engineer was asked
Q. Run time polymorphism in C++
Ans. 

Run time polymorphism is the ability of a program to determine the object type at runtime and call the appropriate method.

  • It is achieved through virtual functions and dynamic binding.

  • Allows for more flexible and extensible code.

  • Example: a base class Animal with virtual function makeSound() and derived classes Dog and Cat that override makeSound().

  • At runtime, if an Animal pointer points to a Dog object, calling mak...

An Associate Software Engineer was asked
Q. Triggers and their types
Ans. 

Triggers are database objects that are automatically executed in response to certain events.

  • Triggers can be used to enforce business rules, audit changes, or replicate data.

  • There are two types of triggers: DML triggers and DDL triggers.

  • DML triggers are fired in response to DML statements (INSERT, UPDATE, DELETE).

  • DDL triggers are fired in response to DDL statements (CREATE, ALTER, DROP).

An Associate Software Engineer was asked
Q. What is a static variable in C?
Ans. 

A static variable in C is a variable that retains its value between function calls.

  • Declared using the 'static' keyword

  • Retains its value throughout the program's execution

  • Useful for maintaining state across function calls

Amdocs Associate Software Engineer Interview Experiences

52 interviews found

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
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Easy coding question in c

Round 2 - Technical 

(1 Question)

  • Q1. Intro , projects , basic dsa
Round 3 - HR 

(1 Question)

  • Q1. No qualified for hr
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Multiple sections on aptitude, coding

Round 2 - One-on-one 

(2 Questions)

  • Q1. Oops concepts , database concepts
  • Q2. Project in depth questions
Round 3 - HR 

(2 Questions)

  • Q1. Basic introduction
  • Q2. Details verification
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

60 mins test , consisting mcqs and 1 coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Detect cycle in LinkedList
  • Ans. 

    Detect cycle in LinkedList by using Floyd's Tortoise and Hare algorithm.

    • Use two pointers, slow and fast, to traverse the LinkedList.

    • If there is a cycle, the fast pointer will eventually meet the slow pointer.

    • Initialize slow and fast pointers at the head of the LinkedList.

    • Move slow pointer by one step and fast pointer by two steps.

    • If fast pointer reaches the end of the LinkedList, there is no cycle.

  • Answered by AI
  • Q2. SQL querries and Unix commands

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 in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Asked basic questions

Round 2 - HR 

(1 Question)

  • Q1. Explain your favourite project and why is it project .

Interview Preparation Tips

Interview preparation tips for other job seekers - Once you clear online test ,just show your speaking skills in interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quantitative Aptitude, Logical Reasoning, 60 mins test

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

I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About rdbms, SQL query 4 to 5, joins
  • Q2. Easy coding questions from leetcode, easy level

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is moderate, be patient and have faith on you.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. OOPS concept , Mysql queries to write , core java
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Contains apptitude and coding.

Round 2 - Technical 

(1 Question)

  • Q1. Basic DSA and some apptitude questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. 1. CountingSubstring in array
  • Ans. 

    Count the number of occurrences of a specific substring in an array of strings.

    • Iterate through each string in the array and use a function to count occurrences of the substring.

    • Use a loop to go through each character in the string and check for matches with the substring.

    • Keep a count variable to track the number of occurrences found.

  • Answered by AI
  • Q2. 2. Sql is most important

Skills evaluated in this interview

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, Coding Test and HR.
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. What is right outer join and it's use in real world scena...read more
  2. How to convert a string containing a number into integer without using inbuilt ...read more
  3. Some queries like finding the second highest salary in a ta...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.

Overall Interview Experience Rating

4.1/5

based on 37 interview experiences

Difficulty level

Easy 26%
Moderate 74%

Duration

Less than 2 weeks 78%
2-4 weeks 22%
View more
Amdocs Associate Software Engineer Salary
based on 946 salaries
₹4.8 L/yr - ₹10 L/yr
27% more than the average Associate Software Engineer Salary in India
View more details

Amdocs Associate Software Engineer Reviews and Ratings

based on 122 reviews

3.5/5

Rating in categories

3.0

Skill development

3.5

Work-life balance

3.1

Salary

3.5

Job security

3.8

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 122 Reviews and Ratings
Software Developer
8.5k salaries
unlock blur

₹9 L/yr - ₹15.5 L/yr

Software Engineer
2k salaries
unlock blur

₹6.8 L/yr - ₹16.2 L/yr

Softwaretest Engineer
1.8k salaries
unlock blur

₹5.8 L/yr - ₹13.8 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹5 L/yr - ₹12.2 L/yr

Associate Software Engineer
946 salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.6
Compare

IBM

3.9
Compare

Oracle

3.7
Compare

Carelon Global Solutions

3.8
Compare
write
Share an Interview