Upload Button Icon Add office photos

Xome

Compare button icon Compare button icon Compare

Filter interviews by

Xome Software Engineer Interview Questions and Answers

Updated 14 Mar 2025

Xome Software Engineer Interview Experiences

1 interview found

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. System Design questions
  • Q2. SQL theory & pgm questions
  • Q3. Python programs
  • Q4. Normalization Pgms

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Xome?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Prime number star pattern Js basics form validations

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all basics of JS and node

Software Engineer Interview Questions Asked at Other Companies

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

I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Y r u choosing this job only??
  • Q2. What's your dream?
  • Ans. 

    My dream is to create innovative software solutions that positively impact people's lives and drive technological advancement.

    • Building User-Centric Applications: I aspire to develop applications that prioritize user experience, like a health tracking app that motivates users to lead healthier lives.

    • Contributing to Open Source: I dream of contributing to open-source projects, collaborating with developers worldwide to c...

  • Answered by AI
  • Q3. My dream is to got a job
  • Q4. How much salary will you expected??

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is to be positive at any situation and be active .
Don't get feared .
Your dressing is shown ur attitude.
Give respect to the others don't forget these things.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Create pagination component using an api show the data for the pages

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Apti and coding

Round 2 - Technical 

(1 Question)

  • Q1. Questions on java a d sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Bogus interview . Doesnt matter how you give the interview , they will choose some random guy who is not worthy maybe
Interview experience
4
Good
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 is your name
  • Q2. How many years of experience you have

Xome HR Interview Questions

4 questions and answers

Q. What is the most challenging thing you have ever done in your role?
Q. Why do you want to join our company?
Q. Tell me about yourself.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Aug 2024, where I was asked the following questions.

  • Q1. What is linked list
  • Ans. 

    A linked list is a linear data structure where elements are stored in nodes, each pointing to the next node in the sequence.

    • Consists of nodes, each containing data and a reference (or pointer) to the next node.

    • Types include singly linked lists, doubly linked lists, and circular linked lists.

    • Singly linked list: Each node points to the next node; e.g., A -> B -> C.

    • Doubly linked list: Each node points to both the ne...

  • Answered by AI
  • Q2. Rearrange a string
  • Ans. 

    Rearranging a string involves changing the order of its characters to form a new string or meet specific criteria.

    • Identify the characters in the string, e.g., 'abc' can be rearranged to 'acb', 'bac', etc.

    • Use algorithms like backtracking to generate all permutations of the string.

    • Consider constraints, such as only rearranging vowels or consonants.

    • Example: Rearranging 'abc' gives ['abc', 'acb', 'bac', 'bca', 'cab', 'cba'...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

First round was coding test in online mode which was quite easy.

Round 2 - Technical 

(1 Question)

  • Q1. In the 2nd round they asked the technical questions from SQL , simple coding questions.
  • Ans. 

    The interview focused on SQL and basic coding questions to assess technical skills.

    • SQL questions may include writing queries to retrieve data from a database.

    • Example: SELECT * FROM employees WHERE department = 'Sales';

    • Coding questions could involve algorithms or data structures.

    • Example: Write a function to reverse a string in Python.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test has multiple choice questions based on basics of programming and 2 coding questions.

Round 2 - Technical 

(3 Questions)

  • Q1. What are the details of Object-Oriented Programming (OOP) concepts?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data and code to manipulate that data.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for creating objects, defining their properties and behaviors.

    • Inheritance allows new classes to be based on existing...

  • Answered by AI
  • Q2. DSA question to solve using any programming language ?
  • Ans. 

    Implement a function to find the maximum sum of a contiguous subarray using Kadane's Algorithm.

    • Kadane's Algorithm runs in O(n) time complexity.

    • Initialize two variables: max_current and max_global.

    • Iterate through the array, updating max_current as the maximum of the current element or the sum of max_current and the current element.

    • Update max_global if max_current exceeds it.

    • Example: For array [-2,1,-3,4,-1,2,1,-5,4], th...

  • Answered by AI
  • Q3. Some concepts of web development and binary tree related questions
Round 3 - HR 

(2 Questions)

  • Q1. What do you know about Digit insurance?
  • Ans. 

    Digit Insurance is a technology-driven insurance company offering a range of general insurance products.

    • Digit Insurance was founded in 2016 by Kamesh Goyal.

    • It is known for its innovative and customer-centric approach to insurance.

    • Digit offers various insurance products such as health insurance, motor insurance, travel insurance, and more.

    • The company leverages technology to simplify the insurance process and provide a s...

  • Answered by AI
  • Q2. Where do you see yourself after 5 years ?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Leading a team of developers on projects

    • Continuing to learn and grow in my technical skills

    • Contributing to the success and growth of the company

    • Possibly pursuing further education or certifications

    • Exploring opportunities for mentorship and leadership roles

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics concept of programming. Brush up coding skills and have good communication skills.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Find word with most frequency
  • Ans. 

    Use a hashmap to count the frequency of each word in the array of strings and find the word with the highest frequency.

    • Create a hashmap to store the frequency of each word

    • Iterate through the array of strings and update the frequency in the hashmap

    • Find the word with the highest frequency in the hashmap

  • Answered by AI
  • Q2. Spring boot concept

Skills evaluated in this interview

Xome Interview FAQs

How to prepare for Xome 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 Xome. The most common topics and skills that interviewers at Xome expect are Information Technology, Application Development, Design Development, Device Drivers and EDI.
What are the top questions asked in Xome Software Engineer interview?

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

  1. System Design questi...read more
  2. SQL theory & pgm questi...read more
  3. Python progr...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more
Xome Software Engineer Salary
based on 9 salaries
₹9 L/yr - ₹14.5 L/yr
30% more than the average Software Engineer Salary in India
View more details

Xome Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Process Associate
252 salaries
unlock blur

₹1.9 L/yr - ₹3.6 L/yr

Senior Process Associate
82 salaries
unlock blur

₹2.7 L/yr - ₹4 L/yr

Senior Software Engineer
19 salaries
unlock blur

₹14.5 L/yr - ₹23 L/yr

Team Lead
14 salaries
unlock blur

₹5.4 L/yr - ₹12.3 L/yr

Senior QA Engineer
9 salaries
unlock blur

₹11 L/yr - ₹15.2 L/yr

Explore more salaries
Compare Xome with

Udaan

4.0
Compare

Swiggy

3.7
Compare

CARS24

3.5
Compare

XpressBees

4.2
Compare
write
Share an Interview