i
Amdocs
Filter interviews by
I appeared for an interview in Jan 2021.
Round duration - 120 minutes
Round difficulty - Medium
1. There was a aptitude , technical and coding test which consist of 20 questions of aptitude , 15 questions of reasoning , 20 question of Java/SQL/Unix and 1 of coding question which are quite easy.
2. Timing for online first round exam is sufficient.
Given a string A
consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters.
Given a string of lowercase English letters, find the first non-repeating character at each point in the stream.
Create a hashmap to store the frequency of each character as it appears in the stream.
Iterate through the stream and check the frequency of each character to find the first non-repeating character.
Output the first non-repeating character at each point in the stream.
Round duration - 40 minutes
Round difficulty - Medium
1. Tell me about yourself (Mention your project or training )
2. What is primary key?
3. Difference between delete and truncate.
4. What is normalization?
5. What is Abstract class (Java)?
6. Explain collection in Java.
7. Differentiate between overloading and overriding
8. Explain about your project
9. Puzzle question
10. Real life example of Linked list.(Train)
Round duration - 10 minutes
Round difficulty - Easy
1. Tell me something not there in your resume.
2. Why do you want tp work at amdocs?
3. Do you work well under pressure?
4. Will you relocate in the future?
5. Do you have any question for us?
Tip 1 : Confidence is a key of success ( Make eye contact).
Tip 2 : Practice puzzles question daily ( atleast 1 per day)
Tip 3 : practice daily for written test ( Aptitude , Reasoning , verbal)
Tip 4 : Do coding question daily atleast 5 per day.
Tip 1 : Mention about your Project.
Tip 2 : Mention about training.
I applied via Campus Placement and was interviewed before Jun 2022. There were 4 interview rounds.
It was through amcat
Inheritance in Java allows a class to inherit properties and behaviors from another class.
Allows a class to reuse code from another class
Creates a parent-child relationship between classes
Child class inherits fields and methods from parent class
Can have multiple levels of inheritance
Example: class Dog extends Animal
I appeared for an interview in Dec 2020.
Round duration - 120 Minutes
Round difficulty - Medium
The test included MCQ questions from SQL, Linux Commands, C/C++ programming, Logical Reasoning, Aptitude questions.
The other section was the coding round, where 2 SQL queries and 2 coding questions were there.
The environment was pretty good. No technical issues were there
You are provided with ‘N’ types of umbrellas, where each umbrella type can shelter a certain number of people. Given an array UMBRELLA
that indicates the number of people each um...
The problem involves determining the minimum number of umbrellas required to shelter a specific number of people based on the capacity of each umbrella.
Iterate through the array of umbrella capacities to find the combination that covers exactly 'M' people.
Keep track of the minimum number of umbrellas used to cover 'M' people.
If it is not possible to cover 'M' people exactly, return -1.
Example: For input [2, 3, 4] and M...
Given an array ARR
consisting of 0s and 1s only, your task is to determine the number of non-empty subarrays where the number of 0s and 1s are equal.
Count the number of subarrays where the number of 0s and 1s are equal in a given array of 0s and 1s.
Iterate through the array and keep track of the count of 0s and 1s encountered so far.
Use a hashmap to store the count of 0s and 1s encountered at each index.
For each index, check if the count of 0s and 1s encountered so far are equal. If yes, increment the result count.
Return the final count of subarrays where the numbe
Round duration - 60 Minutes
Round difficulty - Medium
The technical round was totally based on resume submitted by us during registration. They asked in depth questions related to the technical internship done by me in past. The discussion related to the technical internship went for 20 minutes. They saw the working of my project deployed on Heroku platform and done a good discussion on that too. Then they give me a coding question based on recursion and I was supposed to write the code on Hirepro platform itself. I was asked 3 puzzles also in order to check my problem solving. The interviewers were friendly and they provide a friendly environment during the interview.
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 ...
Reverse a given stack of integers using recursion without using extra space or loops.
Use recursion to pop all elements from the original stack and store them in function call stack
Once the stack is empty, push the elements back in reverse order using recursion
Use the top(), pop(), and push() methods to manipulate the stack
Tip 1 : Practice coding questions from HackerRank, InterviewBit,
Tip 2 : Do at least 1 project and must have the in depth knowledge about it
Tip 3 : One should also do one technical internship. It adds to the working experience we get during our degree
Tip 4 : Very good communication skills are mandatory. Practice a lot to speak in formal english
Tip 5 : Prepare CS subjects like OOPS, RDMS. One must have in depth knowledge about these subjects.
Tip 1 : Everything written on the resume should not be false. There should be atleast one project and one technical internship
Tip 2 : Skills related to various CS subjects and Programming languages should also be mentioned
Tip 3 : Skills related to participation in various co-curricular activities leaves a good impact on the interviewer
What people are saying about Amdocs
I applied via Campus Placement and was interviewed before Dec 2021. There were 4 interview rounds.
It Includes Logically, quantitative, english, programming questions, 2 coding questions for that we need to write code from scratch
Amdocs interview questions for popular designations
I appeared for an interview in Oct 2020.
Round duration - 100 minutes
Round difficulty - Medium
It was organized in the evening. Monitoring was done by webcam and microphone. MCQ's based on aptitude, technical, @ SQL questions and 2 coding questions.
Determine if there exists a Pythagorean triplet within a given array of integers. A Pythagorean triplet consists of three numbers, x, y, and z, such that x^2 + y^2 = z^2.
Check if a Pythagorean triplet exists in a given array of integers.
Iterate through all possible combinations of three numbers in the array and check if they form a Pythagorean triplet.
Use a nested loop to generate all possible combinations efficiently.
Check if the sum of squares of two numbers is equal to the square of the third number.
Round duration - 90 minutes
Round difficulty - Medium
Firstly they asked me for some Linux command line functions. Then they went on SQL. Started from the basic questions by writing a code for creating a table for some values then moved ahead by asking some theoretical and asked me to write some SQL commands too. Then they asked me to write a function which returns whether 2 strings are anagrams or not. Then they asked me to explain everything which I know about oops. After that they asked me 2 simple puzzles.
Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...
Check if two strings are anagrams of each other by comparing their sorted characters.
Sort the characters of both strings and compare them.
Use a dictionary to count the frequency of characters in each string and compare the dictionaries.
Ensure both strings have the same length before proceeding with the comparison.
Example: For input 'spar' and 'rasp', after sorting both strings, they become 'aprs' which are equal, so re
Round duration - 15 minutes
Round difficulty - Easy
Tip 1 : Practice leetcode. Majority of the test questions come directly from there.
Tip 2 : Don't just rote memorize the concepts. See their real life implementation too around you.
Tip 3 : Revise your projects also specially which you made in your 1st and 2nd year.
Tip 1 : First of all, choose a nice format. There shouldn't be many empty spaces and at the same time don't add everything in your resume and make it look messy and lengthy.
Tip 2 : Don't mention your certifications of online course which is done by everyone. Instead, make some projects based on that course and then add it in your resume.
Get interview-ready with Top Amdocs Interview Questions
I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.
Testing types include functional, performance, security, usability, compatibility, and acceptance testing.
Functional testing checks if the software meets the specified requirements.
Performance testing checks the software's speed, scalability, and stability under various loads.
Security testing checks the software's ability to protect against unauthorized access and attacks.
Usability testing checks the software's ease of...
Bugs, defects, and errors are all issues in software development that can cause problems in the functionality of a program.
A bug is a coding mistake that causes unexpected behavior in a program.
A defect is a flaw in the design or functionality of a program.
An error is a mistake made by a user or a program that causes the program to fail.
All three can cause issues in the functionality of a program and need to be identif...
I applied via Campus Placement and was interviewed before Mar 2022. There were 3 interview rounds.
Basic Aptitude test which includes quantitative verbal and logical reasoning
2 questions on programming language and 2 on sql
I appeared for an interview before Dec 2020.
Round duration - 120 minutes
Round difficulty - Medium
Timing was in the afternoon.
The platform was easy to operate and worked on considerable speed.
Both the webcam and audio was supposed to be ON during the test duration.
We could switch between the questions of the same section in case we wanted to change the answers.
You are provided with an undirected, connected, and weighted graph G(V, E). The graph comprises V vertices (numbered from 0 to V-1) and E edges.
Determine and retu...
Find the total weight of the Minimum Spanning Tree in a graph using Kruskal's algorithm.
Implement Kruskal's algorithm to find the Minimum Spanning Tree.
Sort the edges based on their weights and add them to the MST if they don't form a cycle.
Keep track of the total weight of the MST and return it as the output.
You are provided with a 2-D plane and a set of integer coordinates. Your task is to determine the maximum number of these coordinates that can be aligned ...
Find the maximum number of points that can be aligned in a straight line on a 2-D plane.
Iterate through each pair of points and calculate the slope between them.
Store the slope in a hashmap and keep track of the frequency of each slope.
The maximum frequency of slopes + 1 gives the maximum number of points on a straight line.
Tip 1 : You should be very fluent in each and every data structure that you have studied so that you are able to answer even the trickiest question by knowing the basics. This will happen only if you have tried enough questions on different platforms.
Tip 2 : Object Oriented Programming is the easiest and the most underrated concept. In every interview I have given so far, they have asked me the OOPs concepts. I have learnt and understood each and every basic concept of OOPs, primarily from the videos of Coding Ninjas which have polished my skill in this area and now I can answer any question of this topic.
Tip 3 : The projects that you have done in your college life should be on your tips. You should know each and every little detail of it, and sometimes the interviewer may also ask what would happen if you changed some things in your project, so you should be clear with it's working and how would your project work after changing some specifications.
Tip 1 : Highlight your technical skills and write only the things from which you will be comfortable answering from.
Tip 2 : Try to maximize the number of technical achievements on the resume and minimize the extra curricular part.
DBMS stands for Database Management System. It is a software system that manages and organizes data in a database.
DBMS is used to create, modify, and delete databases and their objects.
It provides a way to store and retrieve data efficiently.
It ensures data integrity and security.
Examples of DBMS include Oracle, MySQL, and Microsoft SQL Server.
The duration of Amdocs interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 42 interviews
Interview experience
based on 4.1k reviews
Rating in categories
Software Developer
8.3k
salaries
| ₹5 L/yr - ₹17 L/yr |
Software Engineer
1.9k
salaries
| ₹4 L/yr - ₹16 L/yr |
Softwaretest Engineer
1.7k
salaries
| ₹2.9 L/yr - ₹14 L/yr |
Functional Test Engineer
1.2k
salaries
| ₹4 L/yr - ₹12.1 L/yr |
Associate Software Engineer
1k
salaries
| ₹3.5 L/yr - ₹12 L/yr |
TCS
IBM
Oracle
Carelon Global Solutions