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 Interview Questions, Process, and Tips for Freshers

Updated 3 Apr 2025

Top Amdocs Interview Questions and Answers for Freshers

View all 54 questions

Amdocs Interview Experiences for Freshers

Popular Designations

79 interviews found

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(1 Question)

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.

  • Q1. 

    First Unique Character in a Stream Problem Statement

    Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters.

    Examp...

  • Ans. 

    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.

  • Answered by AI
Round 2 - Face to Face 

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 3 - HR 

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?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in PuneEligibility criteriaMore than 65 %Amdocs interview preparation:Topics to prepare for the interview - Data Structure-> Stack & Linked list is most important for interviews.Java -> Interface , Inheritance ,Exceptional handling , java Collections(Arraylist, vector, LinkedList, Queue..)C++/C -> Difference between both of them , PointersOOPs -> Why we use interface in Java , class & objectsPython -> Lambda function,List,Dictionary,string.Computer Networking -> OSI model , Switch & Router , TopologyTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

Tip 1 : Mention about your Project.
Tip 2 : Mention about training.

Final outcome of the interviewSelected

Top Amdocs Software Developer Interview Questions and Answers

Q1. First Unique Character in a Stream Problem Statement Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters. Example: Input: bbaca Output: baaac Explan... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
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 Jun 2022. There were 4 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 

It was through amcat

Round 3 - One-on-one 

(1 Question)

  • Q1. Describe inheritance in java.
  • Ans. 

    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

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. How are you doing

Skills evaluated in this interview

Top Amdocs Software Developer Interview Questions and Answers

Q1. First Unique Character in a Stream Problem Statement Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters. Example: Input: bbaca Output: baaac Explan... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

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

  • Q1. 

    Minimum Umbrellas Problem

    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...

  • Ans. 

    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...

  • Answered by AI
  • Q2. 

    Subarray with Equal Occurrences Problem Statement

    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.

    Inp...

  • Ans. 

    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

  • Answered by AI
Round 2 - Video Call 

(1 Question)

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.

  • Q1. 

    Reverse Stack with Recursion

    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 ...

  • Ans. 

    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

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Guru Nanak Dev University. Eligibility criteria60% throughout academics, with no breaks/year downAmdocs interview preparation:Topics to prepare for the interview - Data Structures And Algorithms, Object Oriented Programming, Relational Database Management SystemsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Amdocs Software Engineer Interview Questions and Answers

Q1. Reverse Stack with Recursion 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 must refrain from using any loop con... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2021. There were 4 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 

It Includes Logically, quantitative, english, programming questions, 2 coding questions for that we need to write code from scratch

Round 3 - Technical 

(1 Question)

  • Q1. 1. Introduce yourself 2. Tell me about your college project 3. Tell 10 commands of Unix and their uses 4. They About sql queries 5. Write down the code for palindrome number
Round 4 - HR 

(1 Question)

  • Q1. 1. Introduce yourself 2. Give short info about the amdocs 3. Are you willing to do work in shifts

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of sql, unix commands,practice coding related questions.

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 maximum sum of an increasing subsequence of length K. Input: The first li... read more
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Amdocs interview questions for popular designations

 Software Developer

 (135)

 Associate Software Engineer

 (52)

 Software Engineer

 (43)

 Functional Test Engineer

 (15)

 RF Engineer

 (13)

 Softwaretest Engineer

 (12)

 Senior Software Engineer

 (9)

 Devops Engineer

 (8)

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(1 Question)

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.

  • Q1. 

    Pythagorean Triplet Problem

    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.

    Expl...

  • Ans. 

    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.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

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.

  • Q1. 

    Anagram Pairs Verification Problem

    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...

  • Ans. 

    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

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in PuneEligibility criteriaAbove 7 cgpaAmdocs interview preparation:Topics to prepare for the interview - Data Structure & Algorithms, Operating System, DBMS, Unix, Machine Learning, Computer NetworksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Amdocs Software Developer Interview Questions and Answers

Q1. First Unique Character in a Stream Problem Statement Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters. Example: Input: bbaca Output: baaac Explan... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Get interview-ready with Top Amdocs Interview Questions

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Basic sql queries
  • Q2. Linux commands
  • Q3. College project related questions
  • Q4. Testing types
  • Ans. 

    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...

  • Answered by AI
  • Q5. Wht is Bugs,defect, error
  • Ans. 

    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...

  • Answered by AI
  • Q6. Your favorite language
  • Q7. Java basic oops question

Interview Preparation Tips

Interview preparation tips for other job seekers - It was quite smooth.intervierver also good

Skills evaluated in this interview

Top Amdocs Functional Test Engineer Interview Questions and Answers

Q1. What is difference between test cases and test scenarios
View answer (1)

Functional Test Engineer Interview Questions asked at other Companies

Q1. 1. Explain OTC cycle? 2. Explain the concept of copy control 3. Explain the steps of pricing procedure 4. Explain the structure of Idoc and why Idocs are used? 5. Billing types and explain with real time examples where they are used 6. Expl... read more
View answer (1)

Jobs at Amdocs

View all

Interview Questions & Answers

user image Anonymous

posted on 16 Aug 2021

Interview Questionnaire 

4 Questions

  • Q1. Basics of unix
  • Q2. Basic of SQL
  • Q3. Core java
  • Q4. Software engineering oops concept
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Basic Aptitude test which includes quantitative verbal and logical reasoning

Round 3 - Coding Test 

2 questions on programming language and 2 on sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics good and focus more on writing a logic than entirely solving the questions

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 maximum sum of an increasing subsequence of length K. Input: The first li... read more
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

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.

  • Q1. 

    Minimum Spanning Tree Problem Statement

    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...

  • Ans. 

    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.

  • Answered by AI
  • Q2. 

    Maximum Points On Straight Line Problem Statement

    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 ...

  • Ans. 

    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.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria6 CGPAAmdocs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, OOPS, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Amdocs Software Developer Interview Questions and Answers

Q1. First Unique Character in a Stream Problem Statement Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters. Example: Input: bbaca Output: baaac Explan... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Interview Questionnaire 

3 Questions

  • Q1. Unix commands the basic one
  • Q2. OOPS concept
  • Q3. DBMS concept
  • Ans. 

    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.

  • Answered by AI

System Analyst Interview Questions asked at other Companies

Q1. What will you do if you buy a hardware system that does not contain any software in it. And you have no money to buy a software. What will you do in a situation like that?
View answer (3)

Amdocs Interview FAQs

How many rounds are there in Amdocs interview for freshers?
Amdocs interview process for freshers usually has 2-3 rounds. The most common rounds in the Amdocs interview process for freshers are Technical, HR and Resume Shortlist.
How to prepare for Amdocs interview for freshers?
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 Core Java, Java, Hibernate, J2Ee and Maven.
What are the top questions asked in Amdocs interview for freshers?

Some of the top questions asked at the Amdocs interview for freshers -

  1. Challenges faced in your RPA experience and how you resolved ...read more
  2. what are window functions in ...read more
  3. What is OOPs Concepts? Code for Function overloading and functions overridi...read more
How long is the Amdocs interview process?

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

Tell us how to improve this page.

Amdocs Interview Process for Freshers

based on 42 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 864 Interviews
Google Interview Questions
4.4
 • 842 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
SAP Interview Questions
4.2
 • 284 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
View all

Amdocs Reviews and Ratings

based on 4.1k reviews

3.7/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.4

Salary

3.5

Job security

3.8

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 4.1k Reviews and Ratings
HR Partner

Pune

3-5 Yrs

Not Disclosed

Software Engineer

Pune

4-6 Yrs

₹ 5.1-15.95 LPA

Devops Consultant Lead

Pune

6-11 Yrs

Not Disclosed

Explore more jobs
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.1 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