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

Compare button icon Compare button icon Compare

Filter interviews by

Xoriant Interview Questions, Process, and Tips for Experienced

Updated 8 Apr 2025

Top Xoriant Interview Questions and Answers for Experienced

View all 66 questions

Xoriant Interview Experiences for Experienced

Popular Designations

89 interviews found

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Explain Project and the architecture?
  • Ans. 

    The project is a Java-based web application with a microservices architecture.

    • The project is built using Java and follows a microservices architecture.

    • The application is designed to be scalable and modular.

    • Each microservice is responsible for a specific task or functionality.

    • The architecture allows for easy maintenance and updates.

    • Examples of microservices include user management, payment processing, and inventory mana

  • Answered by AI
  • Q2. Explain OOPs concept with your current Project?
  • Ans. 

    OOPs is a programming paradigm based on the concept of objects.

    • My current project is built using OOPs concepts.

    • I have used classes and objects to represent real-world entities.

    • Inheritance and polymorphism are used to achieve code reusability and flexibility.

    • Encapsulation is used to hide the implementation details of the classes.

    • Abstraction is used to provide a simplified view of the complex system.

    • For example, I have a...

  • Answered by AI
  • Q3. What is N tier and 2 tier architecture?
  • Ans. 

    N tier and 2 tier architecture are software architecture patterns used in designing applications.

    • 2 tier architecture involves a client and a server, where the client directly communicates with the server.

    • N tier architecture involves multiple layers of servers, where each layer communicates with the layer above and below it.

    • 2 tier architecture is simpler and faster, but less scalable and secure than N tier architecture.

    • ...

  • Answered by AI
  • Q4. Core Data Structure and Algorithm Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good at Core Java you can easily crack the Interview.

** Dont expect more than 30% hike on your current CTC. If you are expecting more than 30% percent dont go for the interview or else you can clearly told your salary expectation in PRE HR.
Your experience and skill set no worth at for the company

Skills evaluated in this interview

Senior Java Developer Interview Questions asked at other Companies

Q1. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Linked List. Input: The first line of ... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself Why product management Why data product management

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (27)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Most of AD, Server, VWware,

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (9)

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

16 Questions

  • Q1. Difference between == and equals
  • Ans. 

    The '==' operator compares the reference of objects, while the 'equals' method compares the content of objects.

    • The '==' operator checks if two objects refer to the same memory location.

    • The 'equals' method compares the content of objects based on their implementation.

    • The 'equals' method can be overridden to provide custom comparison logic.

    • Example: String str1 = new String('hello'); String str2 = new String('hello'); str...

  • Answered by AI
  • Q2. Tell me about JIT compiler
  • Ans. 

    JIT compiler stands for Just-In-Time compiler. It dynamically compiles code during runtime for improved performance.

    • JIT compiler translates bytecode into machine code at runtime

    • It optimizes code execution by identifying frequently executed code and compiling it

    • Examples include the JIT compilers used in Java Virtual Machine (JVM) and .NET Common Language Runtime (CLR)

  • Answered by AI
  • Q3. String is immutable but what happens if we assign another value to that string reference
  • Ans. 

    Assigning another value to a string reference creates a new string object in memory.

    • Assigning a new value to a string reference creates a new string object in memory

    • The original string object remains unchanged

    • The new value is stored in a different memory location

    • The old value may be garbage collected if there are no other references to it

  • Answered by AI
  • Q4. Try{...}finally{..} what happens if exception thrown from try block
  • Ans. 

    The finally block will always execute, even if an exception is thrown from the try block.

    • The finally block is used to execute code that should always run, regardless of whether an exception is thrown or not.

    • If an exception is thrown from the try block, the code in the finally block will still execute.

    • This is useful for cleaning up resources, such as closing files or database connections.

    • Example: try { // code that may ...

  • Answered by AI
  • Q5. Serialization in java
  • Ans. 

    Serialization is the process of converting an object into a stream of bytes to store or transmit it.

    • Java provides Serializable interface to enable serialization of objects.

    • Serialization can be used for caching, deep cloning, and remote method invocation.

    • Deserialization is the process of converting a stream of bytes back into an object.

    • Java also provides Externalizable interface for custom serialization.

    • Serialization ca...

  • Answered by AI
  • Q6. Fail fast and fail safe in java with examples
  • Ans. 

    Fail fast and fail safe are two error handling techniques in Java.

    • Fail fast approach detects errors as early as possible and stops the program execution immediately.

    • Fail safe approach handles errors gracefully and continues program execution.

    • Examples of fail fast include NullPointerException and ArrayIndexOutOfBoundsException.

    • Examples of fail safe include using try-catch blocks and logging errors instead of throwing ex

  • Answered by AI
  • Q7. Difference between lambda expression and method reference
  • Ans. 

    Lambda expression is an anonymous function while method reference refers to an existing method

    • Lambda expression is used to create an instance of a functional interface

    • Method reference is used to refer to an existing method of a class or object

    • Lambda expression uses the arrow operator (->) to separate the parameters and the body

    • Method reference uses the double colon (::) operator to separate the class or object and the

  • Answered by AI
  • Q8. Difference between sleep and wait
  • Ans. 

    Sleep pauses the execution of a thread for a specified time, while wait pauses the execution until a specific condition is met.

    • Sleep is a static method of the Thread class, while wait is an instance method of the Object class.

    • Sleep is used to introduce a delay in the execution of a thread, while wait is used to wait for a specific condition to be met.

    • Sleep releases the lock on the object, while wait does not release th...

  • Answered by AI
  • Q9. How to get unique values from the collection using stream
  • Ans. 

    To get unique values from a collection using stream, use the distinct() method.

    • Call the distinct() method on the stream of the collection.

    • The distinct() method returns a stream of unique elements.

    • Use the collect() method to convert the stream back to a collection.

  • Answered by AI
  • Q10. Internal working of concurrent hashmap
  • Ans. 

    Concurrent hashmap allows multiple threads to access and modify the map concurrently.

    • Concurrent hashmap is thread-safe and uses internal locking mechanisms to ensure consistency.

    • It uses a technique called 'lock striping' to divide the map into multiple segments, each with its own lock.

    • This allows multiple threads to access different segments of the map concurrently without blocking each other.

    • Concurrent hashmap also us...

  • Answered by AI
  • Q11. Internal working of hashmap and hashset
  • Ans. 

    Hashmap and Hashset are data structures used to store key-value pairs and unique values respectively.

    • Hashmap uses hashing to store key-value pairs in an array. The hash function is used to map the key to an index in the array.

    • Hashset is similar to Hashmap but only stores unique values. It uses hashing to store values in an array.

    • Both Hashmap and Hashset have constant time complexity for insertion, deletion, and retriev...

  • Answered by AI
  • Q12. What is concurrent hashmap
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the Map interface in Java.

    • It allows multiple threads to access and modify the map concurrently without any external synchronization.

    • It achieves this by dividing the map into segments, each of which can be locked independently.

    • It provides better performance than synchronized HashMap for concurrent access.

    • It is part of the java.util.concurrent package in Java.

    • Example: ...

  • Answered by AI
  • Q13. Iterator and list iterator difference
  • Ans. 

    Iterator is a general interface while ListIterator is specific to List interface.

    • Iterator can traverse any collection while ListIterator can traverse only List.

    • ListIterator can traverse in both directions while Iterator can traverse only forward.

    • ListIterator has additional methods like add(), set(), previous(), etc.

    • Iterator is used for read-only access while ListIterator is used for both read and write access.

  • Answered by AI
  • Q14. Spring bean lifecycle
  • Q15. Dependency injection
  • Q16. Init and destroy method

Interview Preparation Tips

Interview preparation tips for other job seekers - average technical interview. basic concepts should be clear

Skills evaluated in this interview

Top Xoriant Senior Software Engineer Interview Questions and Answers

Q1. String is immutable but what happens if we assign another value to that string reference
View answer (3)

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)

Xoriant interview questions for popular designations

 Senior Software Engineer

 (29)

 Software Engineer

 (27)

 Associate Software Engineer

 (15)

 Senior Test Engineer

 (9)

 Test Lead

 (8)

 Software Developer

 (6)

 Technical Lead

 (4)

 Test Engineer

 (2)

Test Lead Interview Questions & Answers

user image Anonymous

posted on 27 Apr 2022

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

Round 1 - Technical 

(1 Question)

  • Q1. Technical+ Coding Round
Round 2 - Technical 

(1 Question)

  • Q1. Technical + Coding Round
Round 3 - Behavioral 

(1 Question)

  • Q1. Manual Testing Questions + Managerial.

Interview Preparation Tips

Interview preparation tips for other job seekers - Each round happened in a week and the offer letter was sent after 2 weeks of HR round. So have patience when you apply in Xoriant. Also words if the interviewer uses words like great , good , it was nice talking to you means there is chances that you have been selected for that round.

Test Lead Interview Questions asked at other Companies

Q1. If you put in an Agile project, Will you be able to do in sprint Automation
View answer (1)

Get interview-ready with Top Xoriant Interview Questions

Scrum Master Interview Questions & Answers

user image Anonymous

posted on 10 Oct 2023

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

I applied via Naukri.com and was interviewed before Oct 2022. 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 - Technical 

(1 Question)

  • Q1. Scrum methodology
Round 3 - Technical 

(1 Question)

  • Q1. Situation based questions based on my SM profile
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion with LWD

Scrum Master Interview Questions asked at other Companies

Q1. If a developer who was working on a critical user story suddenly goes on emergency medical leave. how will you deal with the situation?
View answer (4)

Jobs at Xoriant

View all

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

Interview Questionnaire 

4 Questions

  • Q1. 1.BA terminologies
  • Q2. 2.sql questions
  • Q3. 3.Banking domain knowledge
  • Q4. 4.reg reporting

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer to the point and be confident about your experience

Lead Business Analyst Interview Questions asked at other Companies

Q1. What is Counterparty Credit Risk? What is CVA and how is it calculated?
View answer (1)

I applied via Naukri.com and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical question which you mentioned in resume
Round 2 - HR 

(1 Question)

  • Q1. About your family . logical question

Interview Preparation Tips

Topics to prepare for Xoriant Software Engineer interview:
  • Javascript
  • OOPS
  • HTML
  • CSS
Interview preparation tips for other job seekers - Be confident and prepare well…all the best

Top Xoriant Software Engineer Interview Questions and Answers

Q1. How would you manage multi role login system?
View answer (1)

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 (223)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 3 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 - Technical 

(1 Question)

  • Q1. Linux Shell Scripting System Admin Commands
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Top Xoriant Senior Software Engineer Interview Questions and Answers

Q1. String is immutable but what happens if we assign another value to that string reference
View answer (3)

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Java Coding questions Selenium Questions Framework related questions on cucumber Bdd and on TestNG Questions on Postman and Restassured
Round 3 - Technical 

(1 Question)

  • Q1. Same questions like for Round1 but little advance
Round 4 - HR 

(1 Question)

  • Q1. Salary and Date of joining discussions

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)

Xoriant Interview FAQs

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

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

  1. String is immutable but what happens if we assign another value to that string ...read more
  2. If we have @Service, @Controller, @Configuration, and @Repository why do we nee...read more
  3. What is the purpose of the method public static void main in a Java program? W...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.

Xoriant Interview Process for Experienced

based on 55 interviews

Interview experience

4
  
Good
View more
Join Xoriant Imagination Realized

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 277 Interviews
Altimetrik Interview Questions
3.8
 • 223 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
Luxoft Interview Questions
3.7
 • 124 Interviews
View all

Xoriant Reviews and Ratings

based on 2k reviews

4.1/5

Rating in categories

4.0

Skill development

4.2

Work-life balance

3.8

Salary

3.7

Job security

4.1

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 2k Reviews and Ratings
.NET Software Developer

Pune

2-7 Yrs

Not Disclosed

.Net Developer (Azure Marketplace)

Pune

2-7 Yrs

₹ 7-17 LPA

Security Lead (Cybersecurity)

Pune

7-12 Yrs

₹ 6-16 LPA

Explore more jobs
Software Engineer
1.7k salaries
unlock blur

₹4.5 L/yr - ₹14.5 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹9 L/yr - ₹33.7 L/yr

Softwaretest Engineer
623 salaries
unlock blur

₹2.5 L/yr - ₹8.7 L/yr

Technical Lead
622 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Senior Test Engineer
451 salaries
unlock blur

₹9 L/yr - ₹31.5 L/yr

Explore more salaries
Compare Xoriant with

CitiusTech

3.3
Compare

HTC Global Services

3.6
Compare

HERE Technologies

3.8
Compare

Collabera Technologies

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