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
3.4

based on 756 Reviews

Filter interviews by

Xebia Software Engineer Interview Questions and Answers

Updated 7 Feb 2024

Xebia Software Engineer Interview Experiences

2 interviews found

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

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

First round was MCQ test there was 30th question on SQL, OOPS,DATABASE AND HLTM, CSS ans some sort of logical question

Round 3 - Group Discussion 

Second round was GD our topic is life without technology
and for other groups web development, life before covid and after covid.

Round 4 - Technical 

(1 Question)

  • Q1. This was technical round mosty questions from oops , html css and sql
Round 5 - HR 

(1 Question)

  • Q1. Normal question about 5 year goal why i shoud hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - be honest and ready your resume then prepare for interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure was more and it was difficult round

Round 2 - Technical 

(1 Question)

  • Q1. It will depend on interviewer
Round 3 - Behavioral 

(1 Question)

  • Q1. It will be depending on Manager who is taking interview
Round 4 - HR 

(1 Question)

  • Q1. It will be very smooth

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a very good company overall I had very good learning and experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Design Rate Limiter
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of Java OOPS
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. You have a list of numbers, now using stream api calculate the sum of all integers in a list ?
  • Ans. 

    Use stream api to calculate sum of integers in a list.

    • Use stream() method on the list to create a stream of elements.

    • Use mapToInt() method to convert each element to an integer.

    • Use sum() method to calculate the sum of all integers.

  • Answered by AI
  • Q2. Given two arrays of integers, find the one extra element in second array ? Eg. int[] arr1 = [1,3,7,8]; int[] arr2 = [3,8,7,9,1];
  • Ans. 

    Loop through both arrays and use a hashmap to store frequency of elements, then find the extra element.

    • Loop through both arrays and store frequency of elements in a hashmap

    • Compare the frequency of elements in both arrays to find the extra element

    • Return the extra element found in the second array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more coding questions from HackerRank and memorize methods from stream api since you will be asked to solve questions on notepad.

Skills evaluated in this interview

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

I applied via campus placement at Jaipur Engineering College & Research Centre, Jaipur and was interviewed in Dec 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It includes reasoning, verbal and quantitative abilities

Round 2 - Coding Test 

Includes two coding questions
These are from arrays

Round 3 - Technical 

(1 Question)

  • Q1. 1. Your Project 2. Your internship learning and experiences 3. Oops questions
Round 4 - HR 

(1 Question)

  • Q1. 1. Introduction 2. Family background 3. Why should we hire you 4.Any extra curricular activities

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready for every possible questions from resume
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Qualitest website and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Role - Functional Manual testing Based on the domain I was questioned.
Round 3 - One-on-one 

(1 Question)

  • Q1. This was a managerial round. Had a discussion with head of the corresponding department.
Round 4 - HR 

(1 Question)

  • Q1. Discussed about my Education, location, Family, strength, weakness, goals and where do I see my self in another 2 years

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview experience was excellent. In all the 3 rounds, I really liked how they first introduced about themselves and then they start the interview. It relaxed me and made me comfortable. All the interviewers were very friendly. Be relaxed and be honest with what you have done in you previous organisation.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basic questions from oops, collections and springboot, basic queries.

Xebia Interview FAQs

How many rounds are there in Xebia Software Engineer interview?
Xebia interview process usually has 3 rounds. The most common rounds in the Xebia interview process are Technical, HR and One-on-one Round.
How to prepare for Xebia Software Engineer 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 AWS, Docker, Kubernetes, Azure and Devops.
What are the top questions asked in Xebia Software Engineer interview?

Some of the top questions asked at the Xebia Software Engineer interview -

  1. Governer limit of salesfo...read more
  2. This was technical round mosty questions from oops , html css and ...read more
  3. Life cycle hook asyn apex trigg...read more

Tell us how to improve this page.

Xebia Software Engineer Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more
Join Xebia Creating Digital Leaders.

Fast track your campus placements

View all
Xebia Software Engineer Salary
based on 106 salaries
₹4.5 L/yr - ₹17.1 L/yr
17% more than the average Software Engineer Salary in India
View more details

Xebia Software Engineer Reviews and Ratings

based on 39 reviews

3.8/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.4

Salary

3.8

Job security

3.9

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 39 Reviews and Ratings
Senior Consultant
651 salaries
unlock blur

₹10.4 L/yr - ₹38 L/yr

Lead Consultant
422 salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Consultant
410 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Principal Consultant
161 salaries
unlock blur

₹19.5 L/yr - ₹50.7 L/yr

Senior Software Engineer
131 salaries
unlock blur

₹9 L/yr - ₹32 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