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 for Experienced

Updated 21 Feb 2025

Top Amdocs Software Developer Interview Questions and Answers for Experienced

  • Q1. Puzzle:- you have two jars 3L and 5L and unlimited supply of water. How will you calculate 4L of water.
  • Q2. What is singleton calss?Write a program to make a class singleton?
  • Q3. What is vptr and vptr table? how many instances of them are created and when?
View all 29 questions

Amdocs Software Developer Interview Experiences for Experienced

40 interviews found

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

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

Coding test consist of some basic gate questions and then 2 leetcode easy question

Round 2 - Technical 

(2 Questions)

  • Q1. Regarding project
  • Q2. Regarding some technical questions from resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

One hour of Test with C program and aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. Question on C language , Linux and SQL
  • Q2. Basic commands in Linux
  • Q3. Strings manipulations' in C
  • Ans. 

    String manipulation in C involves various functions to perform operations on strings like concatenation, comparison, and copying.

    • Use functions like strcpy() for copying strings

    • Use functions like strcat() for concatenating strings

    • Use functions like strcmp() for comparing strings

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies for Experienced

asked in Amazon
Q1. Fenwick Tree Problem Statement You are provided with an array/lis ... read more
asked in Infosys
Q2. 1. what is the difference between exception and error. How did u ... read more
asked in Amazon
Q3. Fire in the Cells Problem Statement Given a matrix MAT of size N ... read more
asked in Amazon
Q4. Find All Pairs Adding Up to Target Given an array of integers ARR ... read more
Q5. Chess Tournament Problem Statement In Ninjaland, a chess tourname ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Find duplicate Reactjs question Nodejs Questions
  • Q2. How redux work store, reducer and action
  • Ans. 

    Redux is a state management library for JavaScript applications.

    • Redux uses a single source of truth called the store to manage the application state.

    • Reducers are pure functions that specify how the state should change based on the actions dispatched.

    • Actions are plain JavaScript objects that describe the type of change to be made to the state.

    • When an action is dispatched, the store passes the current state and the actio...

  • Answered by AI
  • Q3. Event loop in javascript
  • Ans. 

    The event loop is a mechanism in JavaScript that allows for asynchronous execution of code.

    • The event loop is responsible for handling and executing tasks in JavaScript.

    • It ensures that tasks are executed in a non-blocking manner.

    • Tasks are added to different queues based on their type and priority.

    • The event loop continuously checks the queues and executes tasks in a specific order.

    • Examples of tasks include setTimeout cal

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. OOPS concept in C++
  • Ans. 

    OOPS concept in C++ refers to Object-Oriented Programming principles like encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

    • Inheritance: creating new classes based on existing classes, allowing for code reuse

    • Polymorphism: ability for objects of different classes to be treated as objects of a common superclass

    • Abstraction:...

  • Answered by AI

Skills evaluated in this interview

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)

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

Linked list ques , implement link list

Get interview-ready with Top Amdocs Interview Questions

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

(1 Question)

  • Q1. What is the architecture of Spring MVC?
  • Ans. 

    Spring MVC follows a Model-View-Controller architecture pattern for building web applications.

    • Spring MVC separates the application into three main components: Model, View, and Controller.

    • Model represents the data of the application and the business logic to manipulate the data.

    • View is responsible for rendering the data to the user interface.

    • Controller handles the user input, processes it, and interacts with the Model a...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. On HashMap, Trasactional Tag.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Challenginng questions for coding round

Software Developer Interview Questions & Answers

user image LAKSHAY PARASHAR

posted on 14 Feb 2024

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

(2 Questions)

  • Q1. Coding question
  • Q2. Take a json and perform CRUD operations
  • Ans. 

    Perform CRUD operations on a JSON object

    • Use POST method to create new data

    • Use GET method to read data

    • Use PUT method to update data

    • Use DELETE method to delete data

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is springboot?
  • 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 deplo...

  • Answered by AI
  • Q2. Name any 3 annotations and 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.

  • Answered by AI

Skills evaluated in this interview

Amdocs Interview FAQs

How many rounds are there in Amdocs Software Developer interview for experienced candidates?
Amdocs interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Amdocs interview process for experienced candidates are Technical, Coding Test and HR.
How to prepare for Amdocs Software Developer interview for experienced candidates?
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 for experienced candidates?

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

  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. What is vptr and vptr table? how many instances of them are created and wh...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 for Experienced

based on 15 interviews

4 Interview rounds

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

Amdocs Software Developer Reviews and Ratings

based on 934 reviews

3.6/5

Rating in categories

3.2

Skill development

3.6

Work-life balance

3.3

Salary

3.4

Job security

3.8

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 934 Reviews and Ratings
Software Developer
8.3k 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

₹2.9 L/yr - ₹14 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹4 L/yr - ₹12.4 L/yr

Associate Software Engineer
1k salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.7
Compare

IBM

4.0
Compare

Oracle

3.7
Compare

Carelon Global Solutions

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