Premium Employer

i

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

Xoriant Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Xoriant Interview Questions and Answers

Updated 17 Jun 2025
Popular Designations

175 Interview questions

A Senior Software Engineer was asked 1w ago
Q. Describe Terraform structure.
Ans. 

Terraform is an Infrastructure as Code tool for building, changing, and versioning infrastructure safely and efficiently.

  • Use HCL (HashiCorp Configuration Language) to define infrastructure resources.

  • Organize configurations into modules for reusability.

  • Utilize state files to track resource changes and manage infrastructure lifecycle.

  • Example: Define an AWS EC2 instance with 'resource "aws_instance" "example" { ... }...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 1w ago
Q. Explain the project.
Ans. 

Led a team to develop a scalable e-commerce platform using microservices architecture, enhancing user experience and performance.

  • Utilized microservices architecture to improve scalability and maintainability.

  • Implemented RESTful APIs for seamless integration with third-party services.

  • Adopted Agile methodologies for iterative development and faster delivery.

  • Incorporated automated testing to ensure code quality and r...

View all Senior Software Engineer interview questions
A Test Engineer was asked 1w ago
Q. Briefly explain Agile Methodology.
Ans. 

Agile methodology is an iterative approach to software development that emphasizes flexibility, collaboration, and customer feedback.

  • Focuses on delivering small, incremental changes to software, allowing for quick adjustments based on user feedback.

  • Encourages collaboration between cross-functional teams, including developers, testers, and stakeholders.

  • Utilizes time-boxed iterations called sprints, typically lastin...

View all Test Engineer interview questions
A Plsql Developer was asked 1w ago
Q. What is a trigger?
Ans. 

A trigger is a database object that automatically executes a specified action in response to certain events on a table or view.

  • Triggers can be defined for events like INSERT, UPDATE, or DELETE.

  • They can enforce business rules, such as preventing invalid data entry.

  • Example: A trigger can automatically update a timestamp column when a record is modified.

  • Triggers can also be used for auditing changes to data.

  • Example: ...

View all Plsql Developer interview questions
A Plsql Developer was asked 1w ago
Q. Explain triggers and their execution sequence.
Ans. 

Triggers are database objects that automatically execute in response to specific events on a table or view.

  • Triggers can be classified into three types: BEFORE, AFTER, and INSTEAD OF.

  • BEFORE triggers execute before the triggering event (e.g., INSERT, UPDATE, DELETE). Example: A BEFORE INSERT trigger can validate data.

  • AFTER triggers execute after the triggering event. Example: An AFTER DELETE trigger can log the dele...

View all Plsql Developer interview questions
A HR Associate was asked 1w ago
Q. What is one initiative you would implement to enhance employee engagement?
Ans. 

Implementing a mentorship program to foster connections and enhance employee engagement across all levels of the organization.

  • Pairing new employees with experienced mentors to guide them through their onboarding process.

  • Organizing regular mentorship meetings to discuss career goals and provide feedback.

  • Encouraging cross-departmental mentorship to promote collaboration and knowledge sharing.

  • Measuring the program's ...

View all HR Associate interview questions
A Quality Engineer was asked 2mo ago
Q. Can you describe your past experiences related to Quality Assurance (QA)?
Ans. 

Experienced Quality Engineer with a strong background in QA methodologies and process improvements across various industries.

  • Implemented automated testing frameworks, reducing manual testing time by 30%.

  • Conducted root cause analysis for defects, leading to a 25% decrease in recurring issues.

  • Collaborated with cross-functional teams to enhance product quality and compliance with industry standards.

  • Developed and exec...

View all Quality Engineer interview questions
Are these interview questions helpful?
A Softwaretest Engineer was asked 5mo ago
Q. What is regression testing?
Ans. 

Regression testing is the process of retesting software after changes to ensure that previously working features still work correctly.

  • Regression testing is performed to make sure that new code changes have not adversely affected existing functionality.

  • It involves running previously executed test cases to verify that no new bugs have been introduced.

  • Regression testing helps in maintaining the overall quality and st...

View all Softwaretest Engineer interview questions
A Softwaretest Engineer was asked 5mo ago
Q. What is load testing?
Ans. 

Load testing is a type of performance testing that simulates real-world usage to evaluate how a system performs under specific conditions.

  • Simulates real-world usage to test system performance

  • Measures response times, throughput, and resource utilization

  • Helps identify bottlenecks and optimize system performance

  • Examples: testing how a website handles a large number of simultaneous users or how an application performs...

View all Softwaretest Engineer interview questions
A Senior Software Engineer was asked 5mo ago
Q. What is the difference between a Scheduled script and a MapReduce script?
Ans. 

Scheduled script runs on a predefined schedule, while Map reduce script processes large datasets in parallel.

  • Scheduled script is used for automating tasks at specific times, like sending reports daily at 8am.

  • Map reduce script is used for processing large datasets by splitting them into smaller chunks and processing them in parallel.

  • Scheduled script is typically used for routine tasks, while Map reduce script is us...

View all Senior Software Engineer interview questions

Xoriant Interview Experiences

210 interviews found

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

16 Questions

  • Q1. Difference between == and equals
  • Ans. 

    The '==' operator compares the reference of objects, while the 'equals' method compares the content of objects.

    • The '==' operator checks if two objects refer to the same memory location.

    • The 'equals' method compares the content of objects based on their implementation.

    • The 'equals' method can be overridden to provide custom comparison logic.

    • Example: String str1 = new String('hello'); String str2 = new String('hello'); str...

  • Answered by AI
  • Q2. Tell me about JIT compiler
  • Ans. 

    JIT compiler stands for Just-In-Time compiler. It dynamically compiles code during runtime for improved performance.

    • JIT compiler translates bytecode into machine code at runtime

    • It optimizes code execution by identifying frequently executed code and compiling it

    • Examples include the JIT compilers used in Java Virtual Machine (JVM) and .NET Common Language Runtime (CLR)

  • Answered by AI
  • Q3. String is immutable but what happens if we assign another value to that string reference
  • Ans. 

    Assigning another value to a string reference creates a new string object in memory.

    • Assigning a new value to a string reference creates a new string object in memory

    • The original string object remains unchanged

    • The new value is stored in a different memory location

    • The old value may be garbage collected if there are no other references to it

  • Answered by AI
  • Q4. Try{...}finally{..} what happens if exception thrown from try block
  • Ans. 

    The finally block will always execute, even if an exception is thrown from the try block.

    • The finally block is used to execute code that should always run, regardless of whether an exception is thrown or not.

    • If an exception is thrown from the try block, the code in the finally block will still execute.

    • This is useful for cleaning up resources, such as closing files or database connections.

    • Example: try { // code that may ...

  • Answered by AI
  • Q5. Serialization in java
  • Ans. 

    Serialization is the process of converting an object into a stream of bytes to store or transmit it.

    • Java provides Serializable interface to enable serialization of objects.

    • Serialization can be used for caching, deep cloning, and remote method invocation.

    • Deserialization is the process of converting a stream of bytes back into an object.

    • Java also provides Externalizable interface for custom serialization.

    • Serialization ca...

  • Answered by AI
  • Q6. Fail fast and fail safe in java with examples
  • Ans. 

    Fail fast and fail safe are two error handling techniques in Java.

    • Fail fast approach detects errors as early as possible and stops the program execution immediately.

    • Fail safe approach handles errors gracefully and continues program execution.

    • Examples of fail fast include NullPointerException and ArrayIndexOutOfBoundsException.

    • Examples of fail safe include using try-catch blocks and logging errors instead of throwing ex...

  • Answered by AI
  • Q7. Difference between lambda expression and method reference
  • Ans. 

    Lambda expression is an anonymous function while method reference refers to an existing method

    • Lambda expression is used to create an instance of a functional interface

    • Method reference is used to refer to an existing method of a class or object

    • Lambda expression uses the arrow operator (->) to separate the parameters and the body

    • Method reference uses the double colon (::) operator to separate the class or object and the ...

  • Answered by AI
  • Q8. Difference between sleep and wait
  • Ans. 

    Sleep pauses the execution of a thread for a specified time, while wait pauses the execution until a specific condition is met.

    • Sleep is a static method of the Thread class, while wait is an instance method of the Object class.

    • Sleep is used to introduce a delay in the execution of a thread, while wait is used to wait for a specific condition to be met.

    • Sleep releases the lock on the object, while wait does not release th...

  • Answered by AI
  • Q9. How to get unique values from the collection using stream
  • Ans. 

    To get unique values from a collection using stream, use the distinct() method.

    • Call the distinct() method on the stream of the collection.

    • The distinct() method returns a stream of unique elements.

    • Use the collect() method to convert the stream back to a collection.

  • Answered by AI
  • Q10. Internal working of concurrent hashmap
  • Ans. 

    Concurrent hashmap allows multiple threads to access and modify the map concurrently.

    • Concurrent hashmap is thread-safe and uses internal locking mechanisms to ensure consistency.

    • It uses a technique called 'lock striping' to divide the map into multiple segments, each with its own lock.

    • This allows multiple threads to access different segments of the map concurrently without blocking each other.

    • Concurrent hashmap also us...

  • Answered by AI
  • Q11. Internal working of hashmap and hashset
  • Ans. 

    Hashmap and Hashset are data structures used to store key-value pairs and unique values respectively.

    • Hashmap uses hashing to store key-value pairs in an array. The hash function is used to map the key to an index in the array.

    • Hashset is similar to Hashmap but only stores unique values. It uses hashing to store values in an array.

    • Both Hashmap and Hashset have constant time complexity for insertion, deletion, and retriev...

  • Answered by AI
  • Q12. What is concurrent hashmap
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the Map interface in Java.

    • It allows multiple threads to access and modify the map concurrently without any external synchronization.

    • It achieves this by dividing the map into segments, each of which can be locked independently.

    • It provides better performance than synchronized HashMap for concurrent access.

    • It is part of the java.util.concurrent package in Java.

    • Example: ...

  • Answered by AI
  • Q13. Iterator and list iterator difference
  • Ans. 

    Iterator is a general interface while ListIterator is specific to List interface.

    • Iterator can traverse any collection while ListIterator can traverse only List.

    • ListIterator can traverse in both directions while Iterator can traverse only forward.

    • ListIterator has additional methods like add(), set(), previous(), etc.

    • Iterator is used for read-only access while ListIterator is used for both read and write access.

  • Answered by AI
  • Q14. Spring bean lifecycle
  • Ans. 

    Spring bean lifecycle involves several phases from instantiation to destruction, managing bean states effectively.

    • 1. Instantiation: The Spring container creates the bean instance using the constructor.

    • 2. Populate Properties: Spring injects dependencies into the bean using setter methods or constructor injection.

    • 3. Bean Name Aware: If the bean implements BeanNameAware, Spring calls setBeanName() with the bean's ID.

    • 4. Be...

  • Answered by AI
  • Q15. Dependency injection
  • Q16. Init and destroy method

Interview Preparation Tips

Interview preparation tips for other job seekers - average technical interview. basic concepts should be clear

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the key topics related to Generative AI, specifically focusing on Retrieval-Augmented Generation (RAG) and Large Language Models (LLM)?
  • Ans. 

    Key topics in Generative AI include Retrieval-Augmented Generation (RAG) and Large Language Models (LLM).

    • RAG combines generative models with retrieval mechanisms to improve text generation.

    • LLMs like GPT-3 and BERT are pre-trained on large text corpora to generate human-like text.

    • Ethical considerations in using LLMs for text generation, such as bias and misinformation.

    • Applications of RAG and LLMs in natural language pro...

  • Answered by AI
  • Q2. What is your understanding of the existing project and the technology stacks used?
  • Ans. 

    I have a strong understanding of the existing project and the technology stacks used.

    • The existing project is a data analytics platform used for analyzing customer behavior and making data-driven decisions.

    • The technology stacks used include Python for data processing, SQL for database management, and Tableau for data visualization.

    • I have experience working with machine learning algorithms such as regression, classificat...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What has been your contribution to existing work and the technologies used in that context?
  • Ans. 

    I have contributed to improving data processing efficiency by implementing advanced machine learning algorithms and optimizing existing models.

    • Implemented advanced machine learning algorithms to improve predictive accuracy

    • Optimized existing models to increase efficiency and reduce processing time

    • Developed automated data processing pipelines to streamline workflow

    • Collaborated with cross-functional teams to integrate new...

  • Answered by AI
  • Q2. ML, DL, Gen AI implementation and flow
  • Q3. Python Coding logic and semantics
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are the existing work challenges you face, and what solutions have you implemented to address them?
  • Ans. 

    Work challenges and solutions in data science role

    • One challenge is handling large volumes of data efficiently, solution is implementing parallel processing techniques like MapReduce

    • Another challenge is ensuring data quality, solution is developing data validation processes and implementing data cleaning algorithms

    • Dealing with complex algorithms is a challenge, solution is continuous learning and staying updated with la...

  • Answered by AI
  • Q2. What is your understanding of Generative AI and Natural Language Processing (NLP), and can you provide examples of their use cases?
  • Ans. 

    Generative AI and NLP are advanced technologies used to create content and understand human language.

    • Generative AI involves creating new content, such as images, music, or text, using algorithms like GANs.

    • NLP focuses on understanding and generating human language, used in chatbots, sentiment analysis, and language translation.

    • Use cases of Generative AI include deepfake videos, art generation, and text generation.

    • NLP is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Genuinely communicate your skills and contributions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic knowledge of your skills
  • Q2. Scenario based questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. SQL technical question.
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion, joining date negotiation and Joining Bonus.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect and ready with your skills whatever you have.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Jira Administration roles
  • Q2. Dashboard configuration
Round 2 - Technical 

(2 Questions)

  • Q1. Jira project configurations and dashboards
  • Q2. Migration of projects from server to cloud
  • Ans. 

    Migration of projects from server to cloud involves planning, testing, and executing the transfer of data and applications.

    • Assess the current server setup and identify all projects and data to be migrated

    • Choose a suitable cloud provider and plan the migration process

    • Test the migration process with a small project before moving larger ones

    • Ensure data security and compliance during the migration

    • Update any necessary confi...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Jira project configuration
  • Ans. 

    Jira project configuration involves setting up workflows, issue types, fields, permissions, and notifications.

    • Define issue types (e.g. bug, task, story)

    • Create custom fields to capture specific information

    • Set up workflows to define the lifecycle of an issue

    • Configure permissions to control who can view and edit issues

    • Manage notifications to keep stakeholders informed

  • Answered by AI
  • Q2. Migrations
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between Scheduled script and Map reduce script?
  • Ans. 

    Scheduled script runs on a predefined schedule, while Map reduce script processes large datasets in parallel.

    • Scheduled script is used for automating tasks at specific times, like sending reports daily at 8am.

    • Map reduce script is used for processing large datasets by splitting them into smaller chunks and processing them in parallel.

    • Scheduled script is typically used for routine tasks, while Map reduce script is used fo...

  • Answered by AI
  • Q2. Types of scripts in NetSuite.
  • Ans. 

    Types of scripts in NetSuite include SuiteScript, SuiteTalk, SuiteFlow, and SuiteBuilder.

    • SuiteScript: JavaScript-based scripts for customizing NetSuite functionality.

    • SuiteTalk: Web services integration for connecting NetSuite with external systems.

    • SuiteFlow: Visual workflow tool for automating business processes.

    • SuiteBuilder: Customization tool for modifying NetSuite forms, fields, and records.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. It was mainly java, interviewers are very good and supportive to elaborate more about problem.
  • Q2. Scenario based on your earlier work experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Javascript
  • Q2. Basics of React

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared basics of All the front technology like JavaScript, Typescript, HTML and CSS
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All the questions on OOPS, Shell script, linux, c, C++, database
Round 2 - Technical 

(1 Question)

  • Q1. Advanced questions on above areas
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

The basics questions are there regarding basic concepts of computer engineering

Round 2 - Technical 

(1 Question)

  • Q1. What is the sdlc ?
  • Ans. 

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

    • SDLC is a structured process that consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful completion of the software project.

    • Examples of SDLC mode...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Data regarding questions
Round 4 - HR 

(1 Question)

  • Q1. Tell me about your project

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain hooks in react
  • Ans. 

    Hooks are a new addition in React 16.8 that allow you to use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are reusable functions that can contai...

  • Answered by AI
Round 2 - Assignment 

Create weather application in react native with unit test scripts

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently interviewed for react native developer position and it started with a technical discussion followed by an assessment and after clearing both rounds I was asked to submit a detailed document regarding my technical experience and past projects. Since then I didn't get any feedback from the company I even tried to contact the Xoriant hr directly but was unable to get any reply so it was a very disappointing experience.

Skills evaluated in this interview

HR Associate Interview Questions & Answers

user image Anonymous

posted on 12 Jun 2025

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

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

  • Q1. What are your procedures for Corporate Social Responsibility (CSR)?
  • Ans. 

    Our CSR procedures focus on community engagement, sustainability, and ethical practices to create a positive impact.

    • Conduct regular assessments of community needs to align our CSR initiatives with local priorities.

    • Implement sustainability programs, such as reducing waste and promoting recycling in the workplace.

    • Encourage employee volunteerism by providing paid time off for community service activities.

    • Partner with loca...

  • Answered by AI
  • Q2. What is one initiative you would implement to enhance employee engagement?
  • Ans. 

    Implementing a mentorship program to foster connections and enhance employee engagement across all levels of the organization.

    • Pairing new employees with experienced mentors to guide them through their onboarding process.

    • Organizing regular mentorship meetings to discuss career goals and provide feedback.

    • Encouraging cross-departmental mentorship to promote collaboration and knowledge sharing.

    • Measuring the program's succe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Xoriant is an amazing company to work with and has an amazing work culture.

Top trending discussions

View All
Interview Tips & Stories
2w
boredinlife
·
works at
Mercer
I left in the middle of an interview.
M a self-taught developer. been working really hard, trying to break into tech. Two days ago, I got approached by an hr from this e learning company for an IT role. I was super nervous but also excited because it felt like maybe this is it. The interview was on teams with 9 experienced pros all with degrees and certifications while I had no formal IT background, just self-taught skills. I felt completely out of place. Most of the interviewers were kind and said I could learn on the job. But one person kept throwing back-to-back questions with shady comments after every answer made me feel like I wasn’t good enough. It crushed my confidence About 10 minutes before the interview ended, I panicked. Anxiety took over, so I faked a network issue and left the call. Then I just broke down. I didn’t want to be disrespectful, so I quickly emailed saying I got disconnected. Truth is, I was overwhelmed and felt like a total fraud. I’ve wanted a job in tech for so long.
Got a question about Xoriant?
Ask anonymously on communities.

Xoriant Interview FAQs

How many rounds are there in Xoriant interview?
Xoriant interview process usually has 2-3 rounds. The most common rounds in the Xoriant interview process are Technical, HR and Resume Shortlist.
How to prepare for Xoriant interview?
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 Xoriant. The most common topics and skills that interviewers at Xoriant expect are Java, Python, Javascript, AWS and SQL.
What are the top questions asked in Xoriant interview?

Some of the top questions asked at the Xoriant interview -

  1. String is immutable but what happens if we assign another value to that string ...read more
  2. Tell me some of the data types that are used in pyth...read more
  3. How do you deliver a release in Agile Scrum? What is the difference between mon...read more
What are the most common questions asked in Xoriant HR round?

The most common HR questions asked in Xoriant interview are -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your salary expectatio...read more
How long is the Xoriant interview process?

The duration of Xoriant 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.2/5

based on 197 interview experiences

Difficulty level

Easy 9%
Moderate 86%
Hard 5%

Duration

Less than 2 weeks 81%
2-4 weeks 17%
4-6 weeks 1%
More than 8 weeks 1%
View more
Join Xoriant Imagination Realized

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 286 Interviews
Altimetrik Interview Questions
3.7
 • 239 Interviews
Globant Interview Questions
3.7
 • 181 Interviews
ThoughtWorks Interview Questions
3.9
 • 156 Interviews
Apexon Interview Questions
3.3
 • 148 Interviews
Brillio Interview Questions
3.4
 • 138 Interviews
Luxoft Interview Questions
3.7
 • 128 Interviews
View all

Xoriant Reviews and Ratings

based on 2.1k reviews

4.1/5

Rating in categories

3.9

Skill development

4.1

Work-life balance

3.8

Salary

3.7

Job security

4.0

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 2.1k Reviews and Ratings
Software Engineer

Pune

6-11 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.8k salaries
unlock blur

₹8.6 L/yr - ₹35.2 L/yr

Software Engineer
1.7k salaries
unlock blur

₹4.5 L/yr - ₹14 L/yr

Softwaretest Engineer
609 salaries
unlock blur

₹2.5 L/yr - ₹9 L/yr

Technical Lead
586 salaries
unlock blur

₹11.5 L/yr - ₹40 L/yr

Senior Test Engineer
512 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Explore more salaries
Compare Xoriant with

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare

HERE Technologies

3.8
Compare

Collabera Technologies

3.5
Compare
write
Share an Interview