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

Compare button icon Compare button icon Compare

Filter interviews by

Xebia Interview Questions, Process, and Tips for Experienced

Updated 27 Mar 2025

Top Xebia Interview Questions and Answers for Experienced

View all 36 questions

Xebia Interview Experiences for Experienced

Popular Designations

46 interviews found

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

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technically not sound interviewer
  • Q2. Poor communication by interviews.
Round 2 - Technical 

(2 Questions)

  • Q1. Technical discussion with senior architect.
  • Q2. Bad experience with questions and answers

Top Xebia Lead Consultant Interview Questions and Answers

Q1. 1. What are the differences between Spring and spring boot framework.
View answer (1)

Lead Consultant Interview Questions asked at other Companies

Q1. Pdc emulator and errors how it can be fixed, how to work on VMware disk consolidation error, types for migration which I was involved and issue seen example cross over migration and aws SMS connector, azure sso
View answer (1)

Consultant Interview Questions & Answers

user image SAURAV KUMAR

posted on 13 Jul 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. How angular run it's project.
  • Ans. 

    Angular runs its project using the Angular CLI, which provides a command-line interface for various project tasks.

    • Angular projects are run using the 'ng serve' command to start a development server.

    • The Angular CLI handles tasks such as building, testing, and deploying the project.

    • Configuration for the project can be done using the 'angular.json' file.

    • Dependencies are managed using npm or yarn.

    • Angular applications are t...

  • Answered by AI
  • Q2. How many methods to create a singleton services.
  • Ans. 

    There are multiple methods to create a singleton service in software development.

    • Using a static member variable

    • Using a static method to return a single instance

    • Using an enum

    • Using a synchronized block

  • Answered by AI
Round 2 - Coding Test 

Basic question related to javascript and angular

Round 3 - HR 

(2 Questions)

  • Q1. What is your role in previous organization
  • Q2. Salary disussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on basic. It's really help you.

Skills evaluated in this interview

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Automation Test Lead Interview Questions & Answers

user image Abhi smarty boy

posted on 4 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Give Count of each character in 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.

  • Answered by AI

Skills evaluated in this interview

Automation Test Lead Interview Questions asked at other Companies

Q1. How to validate text displayed n html tag is a expected
View answer (1)

Xebia interview questions for popular designations

 Senior Consultant

 (10)

 Lead Consultant

 (10)

 Consultant

 (6)

 Software Developer

 (5)

 Principal Consultant

 (3)

 Project Manager

 (2)

 Analyst

 (2)

 Software Engineer

 (2)

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. Stakeholder management
  • Q2. Sprint review , planning

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Get interview-ready with Top Xebia Interview Questions

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

Top Xebia Senior Software Engineer Interview Questions and Answers

Q1. What are Java 8 new features? Which of these have you used?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Jobs at Xebia

View all

Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Mar 2025

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

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

Binary Tree Implementation with example

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (8)
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 Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java 8 features and use case Coding program using stream Spring boot
  • Ans. 

    Java 8 features like streams are used in Spring Boot for efficient data processing.

    • Java 8 introduced streams for functional-style operations on collections.

    • Streams allow for parallel processing of data, improving performance.

    • Spring Boot applications can leverage streams for efficient data manipulation.

    • Example: Using streams to filter and map data in a Spring Boot REST API.

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

(1 Question)

  • Q1. What projects I have worked on? What is Agile process?
  • Ans. 

    I have worked on various projects including software development, system implementation, and process improvement.

    • Implemented Agile methodology in software development projects to increase efficiency and collaboration

    • Led cross-functional teams in daily stand-up meetings, sprint planning, and retrospectives

    • Utilized tools such as Jira and Trello to track progress and manage tasks

    • Worked on projects in industries such as fi

  • Answered by AI

Skills evaluated in this interview

Top Xebia Lead Consultant Interview Questions and Answers

Q1. 1. What are the differences between Spring and spring boot framework.
View answer (1)

Lead Consultant Interview Questions asked at other Companies

Q1. Pdc emulator and errors how it can be fixed, how to work on VMware disk consolidation error, types for migration which I was involved and issue seen example cross over migration and aws SMS connector, azure sso
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Coding questions related to JavaScript and React concepts.

Round 2 - Assignment 

They seek a problem-solving approach and adherence to coding standards.

Top Xebia Senior Consultant Interview Questions and Answers

Q1. What is difference b/t types and interface and there use cases
View answer (1)

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What are agile metrics?
  • Ans. 

    Agile metrics are key performance indicators used to measure the progress and success of agile projects.

    • Agile metrics help teams track productivity, quality, and delivery time.

    • Examples of agile metrics include sprint burndown charts, velocity, lead time, and cycle time.

    • These metrics provide insights into team performance and help identify areas for improvement.

  • Answered by AI
  • Q2. What are the tools used for calculating defect density?
  • Ans. 

    Tools for calculating defect density include defect tracking tools, spreadsheets, and specialized software.

    • Defect tracking tools like Jira or Bugzilla can automatically calculate defect density based on reported issues.

    • Spreadsheets can be used to manually calculate defect density by dividing the total number of defects by the size of the software.

    • Specialized software such as Quality Center or TestRail may have built-in...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with the safe agile questions

Skills evaluated in this interview

Principal Consultant Interview Questions asked at other Companies

Q1. Have you worked on Business Rules and functions of Business Rules?
View answer (1)

Xebia Interview FAQs

How many rounds are there in Xebia interview for experienced candidates?
Xebia interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Xebia interview process for experienced candidates are Technical, One-on-one Round and HR.
How to prepare for Xebia interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Xebia interview for experienced candidates -

  1. What are Java 8 new features? Which of these have you us...read more
  2. Have you worked on Kafka? How many partitions did your code ha...read more
  3. How many qualified B2B leads you can generate along with minimum budget require...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.

Xebia Interview Process for Experienced

based on 31 interviews

Interview experience

3.7
  
Good
View more
Join Xebia Creating Digital Leaders.

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 277 Interviews
Altimetrik Interview Questions
3.8
 • 223 Interviews
Xoriant Interview Questions
4.1
 • 184 Interviews
Globant Interview Questions
3.8
 • 175 Interviews
ThoughtWorks Interview Questions
3.9
 • 149 Interviews
Apexon Interview Questions
3.3
 • 141 Interviews
Brillio Interview Questions
3.4
 • 132 Interviews
View all

Fast track your campus placements

View all

Xebia Reviews and Ratings

based on 794 reviews

3.5/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.4

Salary

3.2

Job security

3.4

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 794 Reviews and Ratings
Data Architect- Chennai

Chennai

10-16 Yrs

Not Disclosed

Azure Infrastructure Engineer

Bangalore / Bengaluru

7-10 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
678 salaries
unlock blur

₹10.5 L/yr - ₹33 L/yr

Lead Consultant
423 salaries
unlock blur

₹12 L/yr - ₹46 L/yr

Consultant
389 salaries
unlock blur

₹5.9 L/yr - ₹20 L/yr

Principal Consultant
164 salaries
unlock blur

₹20 L/yr - ₹48.3 L/yr

Senior Software Engineer
135 salaries
unlock blur

₹8.6 L/yr - ₹32 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
Did you find this page helpful?
Yes No
write
Share an Interview