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 5 Mar 2025

Top Xebia Interview Questions and Answers for Experienced

View all 36 questions

Xebia Interview Experiences for Experienced

Popular Designations

44 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
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. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

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

Jobs at Xebia

View all
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)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Basic JS Question and React Native Design question
  • Q2. One Coding question regarding array 1. [{a:4},{a:3}] outpur should be [{a:7}]. React Native Interview Question is Show Flatlist with selected Elements
  • Q3. What is let var const
  • Ans. 

    let, var, and const are keywords used for variable declaration in JavaScript.

    • let is block-scoped and can be reassigned.

    • var is function-scoped and can be reassigned.

    • const is block-scoped and cannot be reassigned, but its value can be mutated.

  • Answered by AI
  • Q4. How to optimized react native application
  • Ans. 

    Optimizing a React Native application involves improving performance and reducing resource usage.

    • Use PureComponent and shouldComponentUpdate to prevent unnecessary re-renders

    • Implement virtualized lists for long lists to improve performance

    • Minimize the use of third-party libraries and optimize the ones you do use

    • Use native modules for performance-critical tasks

    • Optimize images and assets for smaller file sizes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good .After the interview , hr won't respond for the feedback and mails too .not even single word

Skills evaluated in this interview

React Native Developer Interview Questions asked at other Companies

Q1. 3. What is the use useEffect Hook in react native? and how you relate it with lifecycle method which is class components?
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Life cycle hook asyn apex triggers
  • Q2. Asyn apex ,batch.future
  • Q3. Governer limit of salesforce
  • Ans. 

    Governor limits in Salesforce are predefined limits that prevent abuse and ensure fair resource allocation.

    • Governor limits apply to various aspects of Salesforce, such as Apex code, SOQL queries, DML operations, and email invocations.

    • These limits are in place to maintain system performance, prevent infinite loops, and protect against resource hogging.

    • Examples of governor limits include maximum CPU time, maximum number ...

  • Answered by AI
  • Q4. Soql queries on account and contact

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

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, Spring Boot 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 29 interviews

Interview experience

3.8
  
Good
View more
Join Xebia Creating Digital Leaders.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
View all

Fast track your campus placements

View all

Xebia Reviews and Ratings

based on 772 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.2

Work satisfaction

Explore 772 Reviews and Ratings
Data Engineer

Pune,

Gurgaon / Gurugram

+1

5-10 Yrs

Not Disclosed

Python Application Developer

Gurgaon / Gurugram,

Chennai

+1

4-9 Yrs

Not Disclosed

SRE - Chaos Engineer

Gurgaon / Gurugram,

Chennai

+1

5-10 Yrs

₹ 25-35 LPA

Explore more jobs
Senior Consultant
652 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Consultant
419 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
377 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Consultant
162 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
133 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Xebia with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview