Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Xalta Technology Services Team. If you also belong to the team, you can get access from here

Xalta Technology Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Xalta Technology Services Interview Questions and Answers

Updated 17 Jun 2025
Popular Designations

22 Interview questions

A Senior Software Engineer was asked 11mo ago
Q. What is RPA and what are its applications?
Ans. 

RPA stands for Robotic Process Automation, which involves using software robots to automate repetitive tasks.

  • RPA can be used to automate tasks such as data entry, invoice processing, customer service inquiries, and more.

  • RPA can help improve efficiency, accuracy, and productivity in various industries such as finance, healthcare, and manufacturing.

  • Examples of RPA tools include UiPath, Blue Prism, and Automation Any...

View all Senior Software Engineer interview questions
A RPA Developer was asked
Q. What is the difference between a tuple and a list?
Ans. 

Tuple is immutable and fixed in size, while list is mutable and can be resized.

  • Tuple is defined using parentheses, while list is defined using square brackets.

  • Tuple elements can be of different data types, while list elements can be of the same or different data types.

  • Tuple is faster than list for iteration and accessing elements.

  • Example: tuple = (1, 'a', True), list = [1, 'a', True]

View all RPA Developer interview questions
A RPA Developer was asked
Q. Which join operation will result in the largest number of rows?
Ans. 

Inner join will have more number of rows compared to outer join.

  • Inner join returns only the matching rows between two tables

  • Outer join returns all rows from one table and matching rows from the other table

  • Example: If Table A has 10 rows and Table B has 8 rows, inner join will have maximum 8 rows while outer join can have maximum 10 rows

View all RPA Developer interview questions
A RPA Developer was asked
Q. What are the different types of joins?
Ans. 

Different types of joins include inner join, outer join, left join, and right join.

  • Inner join: Returns rows when there is a match in both tables.

  • Outer join: Returns all rows when there is a match in one of the tables.

  • Left join: Returns all rows from the left table and the matched rows from the right table.

  • Right join: Returns all rows from the right table and the matched rows from the left table.

View all RPA Developer interview questions
A RPA Developer was asked
Q. Which language are you comfortable with?
Ans. 

I am comfortable with Python as a programming language.

  • Python is known for its simplicity and readability, making it a popular choice for developers.

  • It has a large standard library and community support, making it easy to find resources and solutions.

  • Python is versatile and can be used for web development, data analysis, automation, and more.

View all RPA Developer interview questions
A RPA Developer was asked
Q. Why do we use interpreted languages?
Ans. 

Interpreted languages are used for their flexibility, ease of debugging, and platform independence.

  • Interpreted languages are easier to read and write compared to compiled languages.

  • They allow for dynamic typing, making it easier to work with different data types.

  • Interpreted languages are platform independent, meaning the code can run on any system with the interpreter installed.

  • Debugging is easier in interpreted l...

View all RPA Developer interview questions
A RPA Developer was asked
Q. What is the difference between a Binary Tree and a Binary Search Tree?
Ans. 

Binary Tree is a hierarchical data structure where each node has at most two children. Binary Search Tree is a type of binary tree where the left child is less than the parent and the right child is greater.

  • Binary Tree can have any values in any order, while Binary Search Tree follows a specific ordering based on the values.

  • In Binary Search Tree, searching for a value is more efficient as it follows a specific ord...

View all RPA Developer interview questions
Are these interview questions helpful?
A RPA Developer was asked
Q. What are the benefits of using classes?
Ans. 

Classes in programming provide a way to organize and structure code by grouping related data and functions together.

  • Classes help in organizing code by grouping related data and functions together

  • Encapsulation allows for data hiding and protection

  • Inheritance enables code reusability and promotes the DRY (Don't Repeat Yourself) principle

  • Polymorphism allows for flexibility and extensibility in code design

View all RPA Developer interview questions
A RPA Developer was asked
Q. What is the difference between a product life cycle and a software life cycle?
Ans. 

Product life cycle refers to stages a product goes through from introduction to withdrawal, while software life cycle refers to stages a software goes through from development to retirement.

  • Product life cycle includes introduction, growth, maturity, and decline stages.

  • Software life cycle includes planning, development, testing, deployment, and maintenance stages.

  • Product life cycle focuses on physical products, whi...

View all RPA Developer interview questions
A RPA Developer was asked
Q. What are some searching algorithms?
Ans. 

Some searching algorithms include linear search, binary search, depth-first search, and breadth-first search.

  • Linear search: Iterates through each element in a list until the desired element is found.

  • Binary search: Divides a sorted array in half to determine if the target value is in the lower or upper half.

  • Depth-first search: Explores as far as possible along each branch before backtracking.

  • Breadth-first search: E...

View all RPA Developer interview questions

Xalta Technology Services Interview Experiences

6 interviews found

RPA Developer Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2023

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in May 2023. 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 - Technical 

(15 Questions)

  • Q1. What is procedural language and object oriented language? Which one is better? What are the examples of both?
  • Ans. 

    Procedural language focuses on procedures and functions, while object-oriented language focuses on objects and classes.

    • Procedural language: C, Pascal, BASIC

    • Object-oriented language: Java, C++, Python

    • Procedural languages are better for small projects, while object-oriented languages are better for large and complex projects

  • Answered by AI
  • Q2. What is encapsulation and polymorphism?
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit. Polymorphism allows objects to be treated as instances of their parent class.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Encapsulation ensures data integrity and prevents unau...

  • Answered by AI
  • Q3. What is fundamental data types and derived data types? What is the difference?
  • Ans. 

    Fundamental data types are basic data types provided by a programming language, while derived data types are created by combining fundamental data types.

    • Fundamental data types include integers, floating-point numbers, characters, and booleans.

    • Derived data types are created by combining fundamental data types, such as arrays, structures, and classes.

    • The main difference is that fundamental data types are predefined by th...

  • Answered by AI
  • Q4. What is linear data types and non linear data types?
  • Ans. 

    Linear data types have elements arranged in a sequential order, while non-linear data types do not have elements arranged in a sequential order.

    • Linear data types include arrays, linked lists, and queues.

    • Non-linear data types include trees and graphs.

    • Linear data types have a single path to traverse all elements, while non-linear data types have multiple paths.

  • Answered by AI
  • Q5. Difference between Binary Tree and Binary Search Tree?
  • Ans. 

    Binary Tree is a hierarchical data structure where each node has at most two children. Binary Search Tree is a type of binary tree where the left child is less than the parent and the right child is greater.

    • Binary Tree can have any values in any order, while Binary Search Tree follows a specific ordering based on the values.

    • In Binary Search Tree, searching for a value is more efficient as it follows a specific order.

    • Ex...

  • Answered by AI
  • Q6. Do you know any algorithms?
  • Ans. 

    Yes, I am familiar with various algorithms commonly used in RPA development.

    • I am familiar with sorting algorithms like bubble sort, quick sort, and merge sort.

    • I have experience with searching algorithms such as linear search and binary search.

    • I am knowledgeable about graph algorithms like Dijkstra's algorithm and breadth-first search.

  • Answered by AI
  • Q7. Name some sorting algorithms?
  • Ans. 

    Some sorting algorithms include Bubble Sort, Selection Sort, Insertion Sort, Merge Sort, Quick Sort, and Heap Sort.

    • Bubble Sort - repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order

    • Selection Sort - repeatedly finds the minimum element from the unsorted part and swaps it with the first unsorted element

    • Insertion Sort - builds the final sorted array one item at a tim...

  • Answered by AI
  • Q8. Name some searching algorithms?
  • Ans. 

    Some searching algorithms include linear search, binary search, depth-first search, and breadth-first search.

    • Linear search: Iterates through each element in a list until the desired element is found.

    • Binary search: Divides a sorted array in half to determine if the target value is in the lower or upper half.

    • Depth-first search: Explores as far as possible along each branch before backtracking.

    • Breadth-first search: Explor...

  • Answered by AI
  • Q9. What is recursion? Where we can use it? Why do you think we can use recursion there?
  • Ans. 

    Recursion is a programming technique where a function calls itself to solve a problem.

    • Recursion is used in scenarios where a problem can be broken down into smaller subproblems of the same type.

    • Examples include factorial calculation, Fibonacci sequence generation, and tree traversal.

    • Recursion is useful when the problem can be solved by solving a smaller version of the same problem.

  • Answered by AI
  • Q10. Why you want to become RPA developer?
  • Q11. What is RPA? Do you have seen what kind of problems that RPA solve or what it does, its uses?
  • Ans. 

    RPA stands for Robotic Process Automation, which is the use of software robots to automate repetitive tasks.

    • RPA can automate tasks such as data entry, data extraction, form filling, and report generation.

    • It can improve efficiency by reducing human errors and speeding up processes.

    • RPA is used in various industries like finance, healthcare, and manufacturing.

    • Examples of RPA tools include UiPath, Blue Prism, and Automatio...

  • Answered by AI
  • Q12. What are different Software Development Life Cycle? What are the steps in it?
  • Ans. 

    Software Development Life Cycle (SDLC) is a process used by software development teams to design, develop, and test high-quality software.

    • Waterfall Model: Sequential approach with distinct phases like requirements, design, implementation, testing, and maintenance.

    • Agile Model: Iterative approach with continuous feedback and collaboration between cross-functional teams.

    • Spiral Model: Combination of iterative and waterfall...

  • Answered by AI
  • Q13. What is difference between product life cycle and software life cycle?
  • Ans. 

    Product life cycle refers to stages a product goes through from introduction to withdrawal, while software life cycle refers to stages a software goes through from development to retirement.

    • Product life cycle includes introduction, growth, maturity, and decline stages.

    • Software life cycle includes planning, development, testing, deployment, and maintenance stages.

    • Product life cycle focuses on physical products, while so...

  • Answered by AI
  • Q14. What are the benefits of class?
  • Ans. 

    Classes in programming provide a way to organize and structure code by grouping related data and functions together.

    • Classes help in organizing code by grouping related data and functions together

    • Encapsulation allows for data hiding and protection

    • Inheritance enables code reusability and promotes the DRY (Don't Repeat Yourself) principle

    • Polymorphism allows for flexibility and extensibility in code design

  • Answered by AI
  • Q15. What is the Version Controlling? What is the use of it?
  • Ans. 

    Version controlling is a system that records changes to a file or set of files over time so that you can recall specific versions later.

    • Version controlling helps in tracking changes made to code or files over time.

    • It allows multiple developers to work on the same project without interfering with each other's work.

    • It helps in reverting back to previous versions of code in case of errors or bugs.

    • Popular version controlli...

  • Answered by AI
Round 3 - Technical 

(7 Questions)

  • Q1. Which language you are comfortable with? (Here I said Python)
  • Ans. 

    I am comfortable with Python as a programming language.

    • Python is known for its simplicity and readability, making it a popular choice for developers.

    • It has a large standard library and community support, making it easy to find resources and solutions.

    • Python is versatile and can be used for web development, data analysis, automation, and more.

  • Answered by AI
  • Q2. What is interpreted language and compile language? What is difference between interpreted language and compile language? Give examples of both.
  • Ans. 

    Interpreted languages are executed line by line while compiled languages are translated into machine code before execution.

    • Interpreted languages are executed line by line, translating and executing code simultaneously

    • Compiled languages are translated into machine code before execution, resulting in faster performance

    • Examples of interpreted languages: Python, JavaScript, Ruby

    • Examples of compiled languages: C, C++, Java

  • Answered by AI
  • Q3. Why we use interpreted languages?
  • Ans. 

    Interpreted languages are used for their flexibility, ease of debugging, and platform independence.

    • Interpreted languages are easier to read and write compared to compiled languages.

    • They allow for dynamic typing, making it easier to work with different data types.

    • Interpreted languages are platform independent, meaning the code can run on any system with the interpreter installed.

    • Debugging is easier in interpreted langua...

  • Answered by AI
  • Q4. Difference between tuple and list?
  • Ans. 

    Tuple is immutable and fixed in size, while list is mutable and can be resized.

    • Tuple is defined using parentheses, while list is defined using square brackets.

    • Tuple elements can be of different data types, while list elements can be of the same or different data types.

    • Tuple is faster than list for iteration and accessing elements.

    • Example: tuple = (1, 'a', True), list = [1, 'a', True]

  • Answered by AI
  • Q5. What are different types of joins?
  • Ans. 

    Different types of joins include inner join, outer join, left join, and right join.

    • Inner join: Returns rows when there is a match in both tables.

    • Outer join: Returns all rows when there is a match in one of the tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

  • Answered by AI
  • Q6. Which join will have more number of rows?
  • Ans. 

    Inner join will have more number of rows compared to outer join.

    • Inner join returns only the matching rows between two tables

    • Outer join returns all rows from one table and matching rows from the other table

    • Example: If Table A has 10 rows and Table B has 8 rows, inner join will have maximum 8 rows while outer join can have maximum 10 rows

  • Answered by AI
  • Q7. Coding Question: Given list of array, one number is missing and instead of that one number is duplicated. Find the missing number and the number which is duplicated? (Only 1 Coding Question was asked)
  • Ans. 

    Find the missing and duplicated numbers in an array of strings.

    • Convert the array of strings to integers for easier manipulation.

    • Calculate the sum of all numbers in the array and compare it to the sum of numbers from 1 to n, where n is the length of the array.

    • The difference between the two sums will give you the missing number.

    • To find the duplicated number, keep track of the frequency of each number in a hashmap.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Xalta Technology Services RPA Developer interview:
  • Basic concepts of programming
  • Oops pillar
  • SDLC
  • PDLC
  • SQL joins
  • BST vs BT
  • Algorithms
  • Recursion
Interview preparation tips for other job seekers - There were 2 Technical rounds named L1 and L2 of 30 minutes each. If you clear these 2 rounds you will be get selected. These 2 rounds were held on 2 different days.
Interviewers are really very good and understanding people, they will give you time, hint and also will encourage you to think of a possible answer. If you don't know any answer say "Sorry sir/madam, I don't know about it!". You can give them answers in your own way, no need to be exact if you don't know proper definition, just say what you know, as they only want to check that you know the concept. Pro tip: Always say Python is the language you are comfortable in, questions on python are really very easy and it is very easy to solve coding problem in python as well. Prepare the questions which I have given, they are very basic and will be asked, they are more than enough.

Skills evaluated in this interview

RPA Developer Interview Questions & Answers

user image Anonymous

posted on 14 Jun 2025

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

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. In detail overview on final year project
  • Q2. Basic dsa, cns, dbms
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is RPA and its applications?
  • Ans. 

    RPA stands for Robotic Process Automation, which involves using software robots to automate repetitive tasks.

    • RPA can be used to automate tasks such as data entry, invoice processing, customer service inquiries, and more.

    • RPA can help improve efficiency, accuracy, and productivity in various industries such as finance, healthcare, and manufacturing.

    • Examples of RPA tools include UiPath, Blue Prism, and Automation Anywhere...

  • Answered by AI
  • Q2. My previous organization projects and challenges
Round 2 - Behavioral 

(2 Questions)

  • Q1. How comfortable I am to switch to a new technology and tool?
  • Q2. How will I manage team members and be a team player?
  • Ans. 

    I will manage team members by setting clear goals, providing support, fostering collaboration, and leading by example.

    • Set clear goals and expectations for team members

    • Provide support and resources to help team members succeed

    • Foster collaboration and open communication within the team

    • Lead by example and demonstrate strong work ethic and professionalism

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Xalta Technology Services Senior Software Engineer interview:
  • RPA
  • AA360
  • UiPath
Interview preparation tips for other job seekers - Basic concepts and your contribution as individual in a project needs to be clear in our mind.

Skills evaluated in this interview

Operations Manager Interview Questions & Answers

user image krishna Chaitanya Venkatraman Srinivasan

posted on 17 Jun 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Why do you want to work with our company?
  • Ans. 

    I admire your company's commitment to innovation and excellence in operations, aligning with my professional values and goals.

    • Your company has a strong reputation for operational efficiency, which I find inspiring and aligns with my experience in streamlining processes.

    • I am impressed by your commitment to sustainability and corporate social responsibility, which resonates with my personal values.

    • The opportunity to work...

  • Answered by AI
  • Q2. More details about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Reflect on your skills, achievements, and passions Be ready to articulate your value clearly in interviews and your resume.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. What are APIs, and have you worked with them practically?
  • Ans. 

    APIs are interfaces that allow different software applications to communicate and share data seamlessly.

    • APIs (Application Programming Interfaces) enable integration between different systems.

    • They can be RESTful or SOAP-based, with REST being more common in web applications.

    • For example, using a payment gateway API like Stripe allows e-commerce sites to process payments.

    • APIs can return data in formats like JSON or XML, m...

  • Answered by AI
  • Q2. Explain you final year project ?
  • Ans. 

    Developed an automated invoice processing system using RPA to enhance efficiency and reduce manual errors in financial operations.

    • Utilized UiPath for automation, streamlining the invoice approval process.

    • Integrated OCR technology to extract data from scanned invoices.

    • Implemented exception handling to manage discrepancies in invoice data.

    • Conducted user acceptance testing to ensure the system met business requirements.

    • Ac...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Why do you want to associate with Xalta?
  • Ans. 

    I am drawn to Xalta for its innovative approach, commitment to excellence, and the opportunity to make a meaningful impact in operations.

    • Xalta's reputation for innovation aligns with my passion for driving operational efficiency.

    • The company's commitment to sustainability resonates with my values; I admire initiatives like reducing waste in production.

    • I am excited about the opportunity to lead diverse teams and foster a...

  • Answered by AI
  • Q2. What drives you in your career?
  • Ans. 

    I am driven by a passion for operational excellence, continuous improvement, and the impact I can make on team success and organizational growth.

    • I thrive on challenges, like when I streamlined a supply chain process, reducing costs by 20%.

    • Mentoring my team members motivates me; seeing them grow and succeed is incredibly rewarding.

    • I am passionate about data-driven decision-making, which I applied to improve our project ...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Xalta Technology Services?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Oct 2021. 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 - HR 

(3 Questions)

  • Q1. Normal introduction was asked
  • Q2. Description of the previous role
  • Q3. Roles and responsibilities
Round 3 - Aptitude Test 

Not applicable , this was final round

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard on your attitude, skills can be taught! Focus on your goal.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What your exp?
  • Ans. 

    I have over 5 years of experience in software development, specializing in web applications and cloud technologies.

    • Developed a full-stack web application using React and Node.js, improving user engagement by 30%.

    • Led a team of 4 developers in creating a microservices architecture for a scalable e-commerce platform.

    • Implemented CI/CD pipelines using Jenkins and Docker, reducing deployment time by 50%.

    • Worked with Agile met...

  • Answered by AI
  • Q2. What is you total exp?
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Given a, b and target x, y , find if we can reach to x,y using a+b or a-b from a,b
  • Q2. This was a sliding window problem where need to get the max , so you are give a pos in the x axis and there are items kept and you need to collect the max .
  • Ans. 

    Maximize item collection using a sliding window approach on a 1D axis.

    • Identify the range of positions on the x-axis where items are located.

    • Use two pointers to represent the current window of positions being considered.

    • Expand the right pointer to include more items until the window exceeds the desired range.

    • Contract the left pointer to reduce the window size while maintaining the maximum sum of items.

    • Keep track of the ...

  • Answered by AI

I applied via Referral and was interviewed in Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I am not allowed to reveal

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't think I can reveal the questions but I can tell you that KLA has high standards in interview process.
Some tips for software engineer interview
1. Please prepare to do competitive programming like use leetcode algoexpert hacker rank
2. Some of the important areas are string problems dynamic programming stack based and tree based
3. There can be design round and interesting questions may be encountered

Xalta Technology Services Interview FAQs

How many rounds are there in Xalta Technology Services interview?
Xalta Technology Services interview process usually has 2-3 rounds. The most common rounds in the Xalta Technology Services interview process are Technical, Resume Shortlist and Behavioral.
What are the top questions asked in Xalta Technology Services interview?

Some of the top questions asked at the Xalta Technology Services interview -

  1. What is procedural language and object oriented language? Which one is better? ...read more
  2. Coding Question: Given list of array, one number is missing and instead of that...read more
  3. What is fundamental data types and derived data types? What is the differen...read more
How long is the Xalta Technology Services interview process?

The duration of Xalta Technology Services 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.4/5

based on 7 interview experiences

Difficulty level

Easy 29%
Moderate 71%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

KLA Interview Questions
3.8
 • 47 Interviews
Busibud Interview Questions
4.0
 • 42 Interviews
Apptunix Interview Questions
4.0
 • 34 Interviews
GAMMON INDIA Interview Questions
3.8
 • 31 Interviews
Patil Group Interview Questions
3.9
 • 29 Interviews
View all

Xalta Technology Services Reviews and Ratings

based on 11 reviews

4.5/5

Rating in categories

4.6

Skill development

4.4

Work-life balance

4.2

Salary

4.5

Job security

4.5

Company culture

3.9

Promotions

4.5

Work satisfaction

Explore 11 Reviews and Ratings
Compare Xalta Technology Services with

Primus Global Technologies

3.9
Compare

GAMMON INDIA

3.8
Compare

Magneti Marelli Motherson Auto System

3.8
Compare

TriGeo Technologies

3.2
Compare
write
Share an Interview