Premium Employer

i

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

Xoriant Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Xoriant Interview Questions and Answers

Updated 14 Jul 2025
Popular Designations

181 Interview questions

A Software Developer Intern was asked 7mo ago
Q. How do you detect a loop in a linked list?
Ans. 

To detect a loop in a linked list, use Floyd's Cycle-Finding Algorithm (Tortoise and Hare).

  • Use two pointers: slow (tortoise) moves one step, fast (hare) moves two steps.

  • If there's a loop, the fast pointer will eventually meet the slow pointer.

  • If the fast pointer reaches the end (null), the list has no loop.

  • Example: For a list 1 -> 2 -> 3 -> 4 -> 2 (loop back to 2), slow and fast will meet at 2.

View all Software Developer Intern interview questions
A Software Developer Intern was asked 7mo ago
Q. Explain the OSI model with a browser example.
Ans. 

The OSI model is a framework for understanding network communication, illustrated through a web browser's operation.

  • 1. Physical Layer: Transmits raw bitstreams over a physical medium (e.g., Ethernet cables).

  • 2. Data Link Layer: Ensures error-free transfer of data frames (e.g., MAC addresses in local networks).

  • 3. Network Layer: Routes data packets across networks (e.g., IP addresses for routing web requests).

  • 4. Tran...

View all Software Developer Intern interview questions
An Associate Software Engineer was asked 8mo ago
Q. What is the SDLC?
Ans. 

SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

  • SDLC is a structured process that consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

  • Each phase has its own set of activities and deliverables to ensure the successful completion of the software project.

  • Examples of SDLC...

View all Associate Software Engineer interview questions
A React Native Developer was asked 8mo ago
Q. Explain hooks in React.
Ans. 

Hooks are a new addition in React 16.8 that allow you to use state and other React features without writing a class.

  • Hooks are functions that let you use state and other React features in functional components.

  • useState() is a hook that allows you to add state to functional components.

  • useEffect() is a hook that allows you to perform side effects in functional components.

  • Custom hooks are reusable functions that can c...

View all React Native Developer interview questions
An Associate Software Engineer was asked 8mo ago
Q. Explain the concepts of Object-Oriented Programming in detail.
Ans. 

OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

  • OOPs focuses on creating objects that interact with each other to solve a problem

  • Key principles include Inheritance, Encapsulation, Polymorphism, and Abstraction

  • Inheritance allows a class to inherit properties and behavior from another class

  • Encapsulation restricts access to certain componen...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 8mo ago
Q. Explain the Collection framework in detail.
Ans. 

Collections in programming refer to data structures that allow you to store and manipulate multiple elements.

  • Collections can be used to store groups of related data, such as lists, sets, maps, or queues.

  • They provide methods for adding, removing, and accessing elements within the collection.

  • Examples of collections in Java include ArrayList, HashSet, HashMap, and LinkedList.

View all Associate Software Engineer interview questions
A Python Software Developer was asked 9mo ago
Q. What is a decorator?
Ans. 

A decorator is a design pattern in Python that allows adding new functionality to an existing object without modifying its structure.

  • Decorators are denoted by the @ symbol followed by the decorator function name.

  • They are commonly used to modify or extend the behavior of functions or methods.

  • Decorators can be used for logging, timing, authentication, caching, etc.

  • Example: @staticmethod, @classmethod, @property

View all Python Software Developer interview questions
Are these interview questions helpful?
A Python Software Developer was asked 9mo ago
Q. Given an array, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements.
Ans. 

Shift all zeros in an array to the right while maintaining the order of non-zero elements.

  • Iterate through the array and move all non-zero elements to the front of the array.

  • Fill the remaining elements with zeros.

  • Maintain the relative order of non-zero elements.

View all Python Software Developer interview questions
A Senior Software Engineer was asked 10mo ago
Q. What are the different types of constructors?
Ans. 

Different types of constructors in object-oriented programming

  • Default constructor: no parameters

  • Parameterized constructor: accepts parameters

  • Copy constructor: creates a new object as a copy of an existing object

  • Static constructor: used to initialize static data members of a class

  • Private constructor: restricts the instantiation of a class to within the class itself

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 10mo ago
Q. Tell me about the concepts of OOP.
Ans. 

Object-oriented programming paradigm focusing on objects and classes for code organization and reusability.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit (class)

  • Inheritance: Ability of a class to inherit properties and behavior from another class

  • Polymorphism: Ability to present the same interface for different data types

View all Senior Software Engineer interview questions

Xoriant Interview Experiences

215 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the key topics related to Generative AI, specifically focusing on Retrieval-Augmented Generation (RAG) and Large Language Models (LLM)?
  • Ans. 

    Key topics in Generative AI include Retrieval-Augmented Generation (RAG) and Large Language Models (LLM).

    • RAG combines generative models with retrieval mechanisms to improve text generation.

    • LLMs like GPT-3 and BERT are pre-trained on large text corpora to generate human-like text.

    • Ethical considerations in using LLMs for text generation, such as bias and misinformation.

    • Applications of RAG and LLMs in natural language pro...

  • Answered by AI
  • Q2. What is your understanding of the existing project and the technology stacks used?
  • Ans. 

    I have a strong understanding of the existing project and the technology stacks used.

    • The existing project is a data analytics platform used for analyzing customer behavior and making data-driven decisions.

    • The technology stacks used include Python for data processing, SQL for database management, and Tableau for data visualization.

    • I have experience working with machine learning algorithms such as regression, classificat...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What has been your contribution to existing work and the technologies used in that context?
  • Ans. 

    I have contributed to improving data processing efficiency by implementing advanced machine learning algorithms and optimizing existing models.

    • Implemented advanced machine learning algorithms to improve predictive accuracy

    • Optimized existing models to increase efficiency and reduce processing time

    • Developed automated data processing pipelines to streamline workflow

    • Collaborated with cross-functional teams to integrate new...

  • Answered by AI
  • Q2. ML, DL, Gen AI implementation and flow
  • Q3. Python Coding logic and semantics
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are the existing work challenges you face, and what solutions have you implemented to address them?
  • Ans. 

    Work challenges and solutions in data science role

    • One challenge is handling large volumes of data efficiently, solution is implementing parallel processing techniques like MapReduce

    • Another challenge is ensuring data quality, solution is developing data validation processes and implementing data cleaning algorithms

    • Dealing with complex algorithms is a challenge, solution is continuous learning and staying updated with la...

  • Answered by AI
  • Q2. What is your understanding of Generative AI and Natural Language Processing (NLP), and can you provide examples of their use cases?
  • Ans. 

    Generative AI and NLP are advanced technologies used to create content and understand human language.

    • Generative AI involves creating new content, such as images, music, or text, using algorithms like GANs.

    • NLP focuses on understanding and generating human language, used in chatbots, sentiment analysis, and language translation.

    • Use cases of Generative AI include deepfake videos, art generation, and text generation.

    • NLP is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Genuinely communicate your skills and contributions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic knowledge of your skills
  • Q2. Scenario based questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. SQL technical question.
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion, joining date negotiation and Joining Bonus.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect and ready with your skills whatever you have.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Jira Administration roles
  • Q2. Dashboard configuration
Round 2 - Technical 

(2 Questions)

  • Q1. Jira project configurations and dashboards
  • Q2. Migration of projects from server to cloud
  • Ans. 

    Migration of projects from server to cloud involves planning, testing, and executing the transfer of data and applications.

    • Assess the current server setup and identify all projects and data to be migrated

    • Choose a suitable cloud provider and plan the migration process

    • Test the migration process with a small project before moving larger ones

    • Ensure data security and compliance during the migration

    • Update any necessary confi...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Jira project configuration
  • Ans. 

    Jira project configuration involves setting up workflows, issue types, fields, permissions, and notifications.

    • Define issue types (e.g. bug, task, story)

    • Create custom fields to capture specific information

    • Set up workflows to define the lifecycle of an issue

    • Configure permissions to control who can view and edit issues

    • Manage notifications to keep stakeholders informed

  • Answered by AI
  • Q2. Migrations
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between Scheduled script and Map reduce script?
  • Ans. 

    Scheduled script runs on a predefined schedule, while Map reduce script processes large datasets in parallel.

    • Scheduled script is used for automating tasks at specific times, like sending reports daily at 8am.

    • Map reduce script is used for processing large datasets by splitting them into smaller chunks and processing them in parallel.

    • Scheduled script is typically used for routine tasks, while Map reduce script is used fo...

  • Answered by AI
  • Q2. Types of scripts in NetSuite.
  • Ans. 

    Types of scripts in NetSuite include SuiteScript, SuiteTalk, SuiteFlow, and SuiteBuilder.

    • SuiteScript: JavaScript-based scripts for customizing NetSuite functionality.

    • SuiteTalk: Web services integration for connecting NetSuite with external systems.

    • SuiteFlow: Visual workflow tool for automating business processes.

    • SuiteBuilder: Customization tool for modifying NetSuite forms, fields, and records.

  • Answered by AI
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 Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. It was mainly java, interviewers are very good and supportive to elaborate more about problem.
  • Q2. Scenario based on your earlier work experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Javascript
  • Q2. Basics of React

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared basics of All the front technology like JavaScript, Typescript, HTML and CSS
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All the questions on OOPS, Shell script, linux, c, C++, database
Round 2 - Technical 

(1 Question)

  • Q1. Advanced questions on above areas

Senior Software Engineer Interview Questions & Answers

user image Manoj Kumar Surisetti

posted on 14 Jul 2025

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

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

  • Q1. What is the method to find the occurrence of each word in a given sentence while excluding special characters?
  • Ans. 

    To count word occurrences in a sentence, clean the text, split it into words, and use a data structure to tally counts.

    • 1. Remove special characters: Use regex to filter out punctuation. Example: 'Hello, world!' becomes 'Hello world'.

    • 2. Convert to lowercase: This ensures 'Hello' and 'hello' are counted as the same word. Example: 'Hello world' -> 'hello world'.

    • 3. Split the sentence: Use space as a delimiter to create ...

  • Answered by AI
  • Q2. Js concepts like clousers, hoisting, js output related
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

The basics questions are there regarding basic concepts of computer engineering

Round 2 - Technical 

(1 Question)

  • Q1. What is the sdlc ?
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

    • SDLC is a structured process that consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful completion of the software project.

    • Examples of SDLC mode...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Data regarding questions
Round 4 - HR 

(1 Question)

  • Q1. Tell me about your project
  • Ans. 

    Developed a web-based task management application to enhance team collaboration and productivity.

    • Utilized React for the front-end, providing a dynamic user interface.

    • Implemented RESTful APIs using Node.js and Express for backend services.

    • Integrated MongoDB for efficient data storage and retrieval.

    • Incorporated user authentication with JWT for secure access.

    • Conducted user testing to gather feedback and improve usability.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain hooks in react
  • Ans. 

    Hooks are a new addition in React 16.8 that allow you to use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are reusable functions that can contai...

  • Answered by AI
Round 2 - Assignment 

Create weather application in react native with unit test scripts

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently interviewed for react native developer position and it started with a technical discussion followed by an assessment and after clearing both rounds I was asked to submit a detailed document regarding my technical experience and past projects. Since then I didn't get any feedback from the company I even tried to contact the Xoriant hr directly but was unable to get any reply so it was a very disappointing experience.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Xoriant?
Ask anonymously on communities.

Xoriant Interview FAQs

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

Some of the top questions asked at the Xoriant interview -

  1. String is immutable but what happens if we assign another value to that string ...read more
  2. Tell me some of the data types that are used in pyth...read more
  3. How do you deliver a release in Agile Scrum? What is the difference between mon...read more
What are the most common questions asked in Xoriant HR round?

The most common HR questions asked in Xoriant interview are -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your salary expectatio...read more
How long is the Xoriant interview process?

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

4.1/5

based on 202 interview experiences

Difficulty level

Easy 9%
Moderate 86%
Hard 5%

Duration

Less than 2 weeks 80%
2-4 weeks 17%
4-6 weeks 1%
More than 8 weeks 2%
View more
Join Xoriant Imagination Realized

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 242 Interviews
Globant Interview Questions
3.7
 • 184 Interviews
ThoughtWorks Interview Questions
3.9
 • 158 Interviews
Apexon Interview Questions
3.3
 • 150 Interviews
Brillio Interview Questions
3.4
 • 139 Interviews
Luxoft Interview Questions
3.6
 • 128 Interviews
View all

Xoriant Reviews and Ratings

based on 2.1k reviews

4.1/5

Rating in categories

3.9

Skill development

4.1

Work-life balance

3.8

Salary

3.7

Job security

4.0

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 2.1k Reviews and Ratings
L2/L3 Python Automation Testing

Chennai,

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Hiring For AI Developer

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Networking C++ Developer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.8k salaries
unlock blur

₹10.9 L/yr - ₹26.2 L/yr

Software Engineer
1.7k salaries
unlock blur

₹5.5 L/yr - ₹13 L/yr

Softwaretest Engineer
610 salaries
unlock blur

₹3.5 L/yr - ₹7.3 L/yr

Technical Lead
596 salaries
unlock blur

₹21.5 L/yr - ₹40 L/yr

Senior Test Engineer
456 salaries
unlock blur

₹14.9 L/yr - ₹26.4 L/yr

Explore more salaries
Compare Xoriant with

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare

Exela Technologies

3.3
Compare

HERE Technologies

3.8
Compare
write
Share an Interview