Tip 1 : Must do Previously asked Interviews as well as Online Test Questions.
Tip 2 : Prepare OS, DBMS, OOPs, and Computer Networks well.
Tip 3 : Prepare well for one project mentioned in the resume, the interviewer may ask any question related to the project, especially about the networking part of the project.
Tip 1 : Have at least one project on the resume.
Tip 2 : Must mention every skill and certificate in the resume.
Tip 3 : Must have known every strong and intermediate skill mentioned in the resume.
This was a technical round based on my resume, DSA, and project work.
Merge sort
Project explanation


public int maxSubArray(int[] nums) {
int max= Integer.MIN_VALUE;
int min= 0;
int sum=0;
for(int i=0;i sum+=nums[i];
max=Math.max(max,sum-min);
min=Math.min(min,sum);
}
return max;
}



What is operator overloading?
What is OOP?
Basic concepts of OOP?
Explain polymorphism, abstraction, encapsulation, and inheritance with real-life examples.
Which SQL query have you worked on?
Normalization



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
This was again the technical + HR round in this round two interviewers were there.
Introduce yourself.
Family background.
Why do you want to join Amdocs?
Your strength and weaknesses.
Your achievements.
Have you interviewed any other company before?
Explain your college project
Tip 1: Make sure your resume is up-to-date
Tip 2: Be confident and focus on your communication
Tip 3: Prepare for the behavioral questions
Difference between semaphore and mutex?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?