Premium Employer

i

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

Xebia Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Xebia Interview Questions and Answers

Updated 25 May 2025
Popular Designations

67 Interview questions

A Software Testing Lead was asked 1mo ago
Q. Explain the error codes 401 and 404 in API testing with examples.
Ans. 

Error codes 401 and 404 indicate authentication issues and resource not found in API testing.

  • 401 Unauthorized: Indicates that the request requires user authentication. Example: Accessing a protected resource without valid credentials.

  • 404 Not Found: Indicates that the server can't find the requested resource. Example: Requesting a URL that doesn't exist on the server.

View all Software Testing Lead interview questions
A Software Testing Lead was asked 1mo ago
Q. How do you verify data during API testing? Explain with an example.
Ans. 

API testing verification involves checking responses, status codes, and data integrity to ensure functionality and reliability.

  • Check HTTP status codes: Ensure the API returns the correct status code (e.g., 200 for success, 404 for not found).

  • Validate response structure: Confirm that the response body matches the expected JSON/XML schema.

  • Test data integrity: Verify that the data returned by the API is accurate and ...

View all Software Testing Lead interview questions
A Graphic Designer was asked 2mo ago
Q. How do you use Corel Draw?
Ans. 

CorelDRAW is a vector graphic design software used for creating illustrations, layouts, and more with precision and creativity.

  • User Interface: Familiarize yourself with the CorelDRAW workspace, including the toolbox, property bar, and color palette.

  • Creating Shapes: Use the Shape Tool to create basic shapes like rectangles, circles, and polygons, which can be modified easily.

  • Text Tools: Utilize the Text Tool to add...

View all Graphic Designer interview questions
A Senior Consultant was asked 4mo ago
Q. How do you create a custom hook in React?
Ans. 

Custom hooks in React are reusable functions that allow you to extract component logic into separate functions.

  • Custom hooks should start with 'use' keyword.

  • Custom hooks can be used to share logic between components.

  • Example: useFetch custom hook for handling data fetching in components.

View all Senior Consultant interview questions
A Senior Consultant was asked 4mo ago
Q. Is Angular a library or a framework?
Ans. 

Angular is a framework for building client-side web applications.

  • Angular is a front-end framework developed by Google.

  • It allows developers to build dynamic, single-page web applications.

  • Angular uses TypeScript for building applications.

  • It provides features like data binding, dependency injection, and routing.

  • Examples of popular Angular applications include Gmail and Netflix.

View all Senior Consultant interview questions
A Senior Consultant was asked 4mo ago
Q. What is a pipe operator?
Ans. 

Pipe operator is a symbol used in programming languages to pass the output of one function as input to another function.

  • Pipe operator is represented by | in many programming languages.

  • It allows for cleaner and more readable code by chaining functions together.

  • Example: x |> f |> g is equivalent to g(f(x)).

View all Senior Consultant interview questions
An Appian Developer was asked 5mo ago
Q. What is the difference between the load and with functions?
Ans. 

The load function is used to load data from a data source, while the with function is used to specify additional options or parameters for a query or operation.

  • Load function is used to retrieve data from a data source

  • With function is used to add additional options or parameters to a query or operation

  • Load function is essential for fetching data, while with function is optional for providing additional details

View all Appian Developer interview questions
Are these interview questions helpful?
An Automation Test Engineer was asked 8mo ago
Q. What is API testing?
Ans. 

API testing is testing the functionality, reliability, performance, and security of APIs.

  • API testing involves testing the communication between different software systems using APIs.

  • It focuses on verifying the functionality, performance, reliability, and security of APIs.

  • API testing can be done at different levels such as unit testing, integration testing, and end-to-end testing.

  • Tools like Postman, SoapUI, and JMe...

View all Automation Test Engineer interview questions
An Automation Test Lead was asked 9mo ago
Q. Write a program to count the occurrences of each character in a given string.
Ans. 

The task is to count the occurrences of each character in a given string.

  • Iterate through the string and use a HashMap to store the count of each character.

  • Convert the string to char array for easier manipulation.

  • Handle both uppercase and lowercase characters separately if needed.

View all Automation Test Lead interview questions
A Marketing Head was asked 9mo ago
Q. How would you improve their website and marketing materials?
Ans. 

I will conduct a thorough audit of the website and collaterals to identify areas for improvement and implement necessary changes.

  • Conduct a comprehensive audit of the website and collaterals to identify issues

  • Ensure branding consistency across all platforms

  • Optimize website for SEO and user experience

  • Update content to be more engaging and relevant to target audience

  • Implement A/B testing to optimize conversion rates

View all Marketing Head interview questions

Xebia Interview Experiences

87 interviews found

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 Feb 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What are Java 8 new features? Which of these have you used?
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions: Enable functional programming in Java by expressing instances of single-method interfaces (functional interfaces) concisely.

    • Functional interfaces: Interfaces with a single abstract method, such as java.util.function.Function or java.util.function.Predicate.

    • Streams: Allow for proce...

  • Answered by AI
  • Q2. Are you aware of Eviction Policy in Cache?
  • Ans. 

    Eviction policy in cache determines which items should be removed when the cache reaches its maximum capacity.

    • Eviction policy helps in managing the cache size and ensuring that the most relevant data is retained.

    • Common eviction policies include LRU (Least Recently Used), LFU (Least Frequently Used), and FIFO (First In, First Out).

    • For example, in LRU policy, the least recently accessed items are removed from the cache w...

  • Answered by AI
  • Q3. LRU in cache? WAP to demonstrate LRU in Cache.
  • Ans. 

    LRU (Least Recently Used) is a cache eviction policy where the least recently accessed items are removed from the cache when it reaches its capacity.

    • LRU cache stores key-value pairs with a maximum capacity. When the cache is full, the least recently used item is evicted to make space for new items.

    • Each time a key is accessed in the cache, it is moved to the front of the cache to indicate it was the most recently used i...

  • Answered by AI
  • Q4. Implement Factory Pattern.
  • Ans. 

    Factory pattern is a creational design pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of objects that will be created.

    • Create an interface or abstract class for the factory with a method to create objects

    • Create concrete classes that implement the factory interface and return specific types of objects

    • Client code uses the factory to create objects without k...

  • Answered by AI
  • Q5. What are profiles in spring boot?
  • Ans. 

    Profiles in Spring Boot allow you to define different configurations for different environments.

    • Profiles are used to customize application behavior based on the environment it is running in.

    • You can define profiles in application.properties or application.yml using 'spring.profiles.active' property.

    • Common profiles include 'dev', 'test', and 'prod' for development, testing, and production environments.

    • You can have differ...

  • Answered by AI
  • Q6. Which cache have you used? Why is Cache needed
  • Ans. 

    I have used Redis and Memcached. Cache is needed to improve performance by storing frequently accessed data in memory.

    • Used Redis for key-value storage and Memcached for object caching

    • Cache is needed to reduce database load and improve response time

    • Helps in storing frequently accessed data in memory for quick retrieval

  • Answered by AI
  • Q7. Have you worked on Kafka? How many partitions did your code have?
  • Ans. 

    Yes, I have worked on Kafka. My code had 10 partitions.

    • Yes, I have experience working with Kafka and have implemented code with multiple partitions.

    • In one of my projects, I used Kafka with 10 partitions to distribute the workload efficiently.

    • Having multiple partitions in Kafka helped in achieving high throughput and scalability for real-time data processing.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Xebia Senior Software Engineer interview:
  • Java
  • Cache
  • Spring Boot
  • Kafka
Interview preparation tips for other job seekers - Knowing about your current project Architecture as well as business use helps a lot in the beginning of the interview.

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Jan 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Case Study 

I got several invitation calls from 3 different persons for the same interview at Xebia Bangalore Brigade office.I attended an interview at Xebia on January 11, 2025, and the experience was disappointing. Despite reading several negative reviews beforehand, I chose to give the company a fair chance, but unfortunately, the concerns expressed in those reviews turned out to be valid.

From the very beginning, the process was poorly managed. I waited for over three hours before being called, while candidates who arrived after me were invited for their interviews earlier. This inconsistency immediately raised questions about the fairness of their process.

When my turn finally came, the interview began with a moderately challenging SQL question: I was asked to fetch all invalid December month transaction IDs (which is coming in ooo hours) from a dataset, applying conditions such as working hours from Monday to Friday (9 AM to 4 PM), excluding weekends and specific holidays (24th and 25th December). While I attempted to solve this, the interviewer interrupted repeatedly with casual, unrelated remarks. These interruptions disrupted my concentration and added unnecessary pressure, making it difficult to focus on solving the query effectively.

Following this, the interviewer moved to a Python question, which involved determining whether a given number was a perfect square. Although the problem itself was simple, it included irrelevant details, such as pre-imported libraries in a web-based IDE. This added an unnecessary layer of complexity and confusion. Again, the interviewer’s interruptions and casual talk distracted me further. Instead of focusing on assessing my logic and problem-solving skills, he seemed more interested in making irrelevant comments.

What stood out most negatively was the interviewer’s unprofessional behavior. At one point, he made an inappropriate remark about my name, comparing it to his own, which he claimed was not as "weighted."
I asked his name politely and he replied " Vaibhav Gupta"

While I attempted to steer the conversation back to technical discussions, his attitude remained dismissive and unfocused. He even questioned my leadership skills but turned it into an argument instead of allowing me to explain.

I also noticed disparities in how candidates were treated. For instance, a female candidate before me was given over an hour for her interview, while mine felt rushed and dismissive. While this is my personal observation, it raised concerns about bias in their evaluation process.

The interview ended abruptly and on a negative note. When I tried to discuss architectural patterns for data pipelines, the interviewer dismissed my points outright, stating that they did not need data architects. Without providing proper closure, he left the room, leaving me feeling disrespected and undervalued.

Overall, the experience was frustrating and insulting. The interviewer’s behavior was unprofessional and dismissive, and the process lacked the basic respect and fairness expected in a professional setting. Based on my experience, I strongly believe that Xebia needs to overhaul their interview practices, ensuring a more structured, unbiased, and respectful approach toward candidates.

I am relieved I was not selected, as this experience highlighted what could likely be a toxic work environment. I would not recommend Xebia to anyone, as their lack of professionalism and courtesy reflects poorly on their organizational culture.

Interview Preparation Tips

Topics to prepare for Xebia Data Engineer interview:
  • Experience
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. What is angular. Library or framework?
  • Ans. 

    Angular is a framework for building client-side web applications.

    • Angular is a front-end framework developed by Google.

    • It allows developers to build dynamic, single-page web applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Examples of popular Angular applications include Gmail and Netflix.

  • Answered by AI
  • Q2. What is pipe operator?
  • Ans. 

    Pipe operator is a symbol used in programming languages to pass the output of one function as input to another function.

    • Pipe operator is represented by | in many programming languages.

    • It allows for cleaner and more readable code by chaining functions together.

    • Example: x |> f |> g is equivalent to g(f(x)).

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Make custom hook in react
  • Ans. 

    Custom hooks in React are reusable functions that allow you to extract component logic into separate functions.

    • Custom hooks should start with 'use' keyword.

    • Custom hooks can be used to share logic between components.

    • Example: useFetch custom hook for handling data fetching in components.

  • Answered by AI
  • Q2. ES6 concepts
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Product owner and scrum online test 60 Qs 1 hour long

Round 2 - One-on-one 

(2 Questions)

  • Q1. With Interviewer
  • Q2. Nothing.. he started showing attitude... pointing flaws in answers .. inspite of me worked as product manager/owner in the past interviewer keep saying that "you worked as analyst in all comapnies"..
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. Test Plan in detail. test strategy in detail
  • Ans. 

    A test plan outlines the testing approach, while a test strategy defines the overall testing goals and methods.

    • Test Plan: A document detailing the scope, approach, resources, and schedule of testing activities.

    • Test Strategy: A high-level document that outlines the testing objectives and the overall testing approach.

    • Example of Test Plan: Includes sections like test objectives, test scope, test deliverables, and resource...

  • Answered by AI
  • Q2. Bug Life Cycle, Different types of testing done?
  • Ans. 

    The Bug Life Cycle outlines the stages of a bug from discovery to closure, while various testing types ensure software quality.

    • 1. Bug Life Cycle: Stages include New, Assigned, Open, Fixed, Retested, and Closed.

    • 2. Unit Testing: Tests individual components for functionality, e.g., testing a single function in isolation.

    • 3. Integration Testing: Ensures combined components work together, e.g., testing a database connection ...

  • Answered by AI
  • Q3. Experience in database testing, tools used, what things are checked while doing database testing?
  • Ans. 

    Database testing ensures data integrity, accuracy, and performance in applications by validating database operations and structures.

    • Verify data integrity by checking for consistency between the database and application layers.

    • Use tools like SQL Server Management Studio or Oracle SQL Developer for executing queries and validating results.

    • Check for data accuracy by comparing data in the database with expected results fro...

  • Answered by AI
  • Q4. What is API, API Testing, Tools used, In which layer API testing is performed?
  • Ans. 

    API is a set of protocols for building software applications; API testing ensures these interfaces function correctly.

    • API (Application Programming Interface) allows different software systems to communicate.

    • API Testing involves verifying the functionality, reliability, performance, and security of APIs.

    • Common tools for API Testing include Postman, SoapUI, and JMeter.

    • API testing is typically performed at the service lay...

  • Answered by AI
  • Q5. How to verify things during API testing, explain with example
  • Ans. 

    API testing verification involves checking responses, status codes, and data integrity to ensure functionality and reliability.

    • Check HTTP status codes: Ensure the API returns the correct status code (e.g., 200 for success, 404 for not found).

    • Validate response structure: Confirm that the response body matches the expected JSON/XML schema.

    • Test data integrity: Verify that the data returned by the API is accurate and consi...

  • Answered by AI
  • Q6. Explain each with example - low priority high severity, high priority low severity, medium priority medium severity
  • Ans. 

    Understanding issue prioritization in software testing helps in effective resource allocation and risk management.

    • Low Priority High Severity: A critical bug that occurs rarely, e.g., a data loss issue that happens under specific conditions.

    • High Priority Low Severity: A minor UI glitch that affects many users, e.g., a typo on the homepage that needs immediate fixing.

    • Medium Priority Medium Severity: A functional bug that...

  • Answered by AI
  • Q7. Usability testing scenarios for a web page, Security testing scenarios
  • Ans. 

    Usability and security testing ensure a web page is user-friendly and protected against vulnerabilities.

    • Evaluate navigation: Ensure users can easily find information (e.g., test menu links).

    • Check responsiveness: Test on various devices (e.g., mobile, tablet, desktop).

    • Assess readability: Verify font size and color contrast for accessibility.

    • Conduct user feedback sessions: Gather insights from real users on their experie...

  • Answered by AI
  • Q8. Mobile app testing
  • Q9. Integration vs end-to-end testing, smoke vs sanity testing
  • Ans. 

    Integration and end-to-end testing focus on different testing scopes, while smoke and sanity testing assess build stability and functionality.

    • Integration Testing: Tests interactions between integrated components or systems. Example: Testing a payment gateway with an e-commerce platform.

    • End-to-End Testing: Validates the entire application flow from start to finish. Example: Testing user registration, login, and purchase...

  • Answered by AI
  • Q10. Error codes 401, 404 in API testing with example
  • Ans. 

    Error codes 401 and 404 indicate authentication issues and resource not found in API testing.

    • 401 Unauthorized: Indicates that the request requires user authentication. Example: Accessing a protected resource without valid credentials.

    • 404 Not Found: Indicates that the server can't find the requested resource. Example: Requesting a URL that doesn't exist on the server.

  • Answered by AI
  • Q11. Introduction, overview of regular working day, tools used, current role & responsibilities
  • Q12. In different ways, I was asked my approach of working in extremely tight deadlines. What if , build is given you today afternoon and release is tomorrow? What if build is given you 2 hours before release?...

Interview Preparation Tips

Interview preparation tips for other job seekers - Doesn't seem like a good company to work for. HR (Veni D) was quite rude and arrogant while scheduling the interview. During confirmation call, she bluntly said that now I can't make any excuses for not appearing in the interview (as I have confirmed availability 2 days before). The interview process was not well organized. She said multiple invites, and during the interview was angry as I joined the 1st invite. Obv the camera was turned off (both HR and interviewer). Interviewer had a quite rude approach. He went through my resume during the call. Although I was told the profile was for completely manual testing, but he was asking, for automation, performance, load, security, API automation, and others. He asked one same thing in 4-5 ways if I was ready to work for long hours including night shifts and on weekends as well. He said they have small Indian based clients (and their timelines are quite messed up) He himself seem quite frustrated with the company ( as I asked him few questions about the company culture later on). I never heard from HR again, nor received any rejection mail
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between load and with function?
  • Ans. 

    The load function is used to load data from a data source, while the with function is used to specify additional options or parameters for a query or operation.

    • Load function is used to retrieve data from a data source

    • With function is used to add additional options or parameters to a query or operation

    • Load function is essential for fetching data, while with function is optional for providing additional details

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Asked about classical ml and data science concepts
Round 2 - Technical 

(1 Question)

  • Q1. Discussion on projects and past experience.

Interview Preparation Tips

Topics to prepare for Xebia Data Scientist interview:
  • Machine Learning
  • Statistics
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is API testing
  • Ans. 

    API testing is testing the functionality, reliability, performance, and security of APIs.

    • API testing involves testing the communication between different software systems using APIs.

    • It focuses on verifying the functionality, performance, reliability, and security of APIs.

    • API testing can be done at different levels such as unit testing, integration testing, and end-to-end testing.

    • Tools like Postman, SoapUI, and JMeter a...

  • Answered by AI
  • Q2. What is BDD framework
  • Ans. 

    BDD framework stands for Behavior Driven Development framework, which focuses on the behavior of the system from the end user's perspective.

    • BDD framework uses natural language to describe the behavior of the system

    • It helps in collaboration between developers, testers, and business stakeholders

    • Popular BDD frameworks include Cucumber, SpecFlow, and JBehave

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic of java to advanced
  • Q2. Array related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Architecture related
  • Q2. Management roles
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java related questions
Round 2 - Technical 

(1 Question)

  • Q1. Selenium related questions

Graphic Designer Interview Questions & Answers

user image Saifulla Khan

posted on 1 May 2025

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

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

  • Q1. How to corel draw
  • Ans. 

    CorelDRAW is a vector graphic design software used for creating illustrations, layouts, and more with precision and creativity.

    • User Interface: Familiarize yourself with the CorelDRAW workspace, including the toolbox, property bar, and color palette.

    • Creating Shapes: Use the Shape Tool to create basic shapes like rectangles, circles, and polygons, which can be modified easily.

    • Text Tools: Utilize the Text Tool to add and ...

  • Answered by AI
  • Q2. How to msworld

Interview Preparation Tips

Interview preparation tips for other job seekers - Fresher

Top trending discussions

View All
Interview Tips & Stories
2w
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 Xebia?
Ask anonymously on communities.

Xebia Interview FAQs

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

Some of the top questions asked at the Xebia interview -

  1. What are the classes needed to create a GET REST A...read more
  2. What are Java 8 new features? Which of these have you us...read more
  3. Have you worked on Kafka? How many partitions did your code ha...read more
What are the most common questions asked in Xebia HR round?

The most common HR questions asked in Xebia interview are -

  1. What are your salary expectatio...read more
  2. tell me about yourse...read more
How long is the Xebia interview process?

The duration of Xebia 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

3.5/5

based on 78 interview experiences

Difficulty level

Easy 17%
Moderate 83%

Duration

Less than 2 weeks 73%
2-4 weeks 23%
4-6 weeks 3%
More than 8 weeks 3%
View more
Join Xebia Creating Digital Leaders.

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
Globant Interview Questions
3.7
 • 183 Interviews
ThoughtWorks Interview Questions
3.9
 • 157 Interviews
Apexon Interview Questions
3.3
 • 150 Interviews
Brillio Interview Questions
3.4
 • 139 Interviews
View all

Xebia Reviews and Ratings

based on 838 reviews

3.4/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.4

Salary

3.1

Job security

3.4

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 838 Reviews and Ratings
Urgent Trainer Required For Mern stack

Pondicherry / Puducherry

3-8 Yrs

Not Disclosed

Urgent Trainer Required For AIML domain

Pondicherry / Puducherry

4-9 Yrs

Not Disclosed

Manager - Scrum Master & Business Analysis

Pune,

Gurgaon / Gurugram

+1

8-13 Yrs

₹ 25-30 LPA

Explore more jobs
Senior Consultant
730 salaries
unlock blur

₹16.6 L/yr - ₹30.9 L/yr

Lead Consultant
447 salaries
unlock blur

₹21.4 L/yr - ₹39.6 L/yr

Consultant
431 salaries
unlock blur

₹9.3 L/yr - ₹16.7 L/yr

Principal Consultant
181 salaries
unlock blur

₹25 L/yr - ₹44.9 L/yr

Senior Software Engineer
148 salaries
unlock blur

₹15.7 L/yr - ₹30 L/yr

Explore more salaries
Compare Xebia with

Xoriant

4.1
Compare

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare

HERE Technologies

3.8
Compare
write
Share an Interview