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
4.1

based on 1.8k Reviews

Filter interviews by

Xoriant Software Engineer Interview Questions, Process, and Tips

Updated 23 Oct 2024

Top Xoriant Software Engineer Interview Questions and Answers

View all 15 questions

Xoriant Software Engineer Interview Experiences

22 interviews found

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

Interview Questionnaire 

5 Questions

  • Q1. What Data binding in angular?
  • Ans. 

    Data binding in Angular is a way to establish a connection between the UI and the application's data.

    • Data binding allows automatic synchronization of data between the model and the view.

    • It eliminates the need for manual DOM manipulation.

    • There are different types of data binding in Angular, such as interpolation, property binding, event binding, and two-way binding.

    • Interpolation: {{ data }}

    • Property binding: [property]='...

  • Answered by AI
  • Q2. Software development life cycle?
  • Ans. 

    Software development life cycle is a process followed by software developers to design, develop and maintain software.

    • SDLC consists of several phases such as planning, analysis, design, implementation, testing, deployment, and maintenance.

    • Each phase has its own set of activities and deliverables.

    • SDLC models include Waterfall, Agile, and DevOps.

    • SDLC helps in ensuring that the software is developed efficiently, meets the...

  • Answered by AI
  • Q3. How would you manage multi role login system?
  • Ans. 

    Multi role login system can be managed by assigning different access levels to each role.

    • Create a database table for roles and their access levels

    • Assign each user a role with corresponding access level

    • Implement role-based access control (RBAC) to restrict access to certain features

    • Use session management to keep track of user roles

    • Provide an admin panel to manage roles and access levels

  • Answered by AI
  • Q4. CSS methods to fixed positions of headers and footers?
  • Ans. 

    CSS methods for fixed headers and footers

    • Use position: fixed property

    • Set top or bottom property to 0 for fixed header/footer

    • Add z-index property to ensure header/footer is on top

    • Consider using padding or margin to avoid overlapping content

  • Answered by AI
  • Q5. What is static service in angular?
  • Ans. 

    Static service in Angular is used to share data between components and persists data even after the component is destroyed.

    • Static service is a singleton service that can be injected into any component.

    • It is used to share data between components.

    • Data persists even after the component is destroyed.

    • It is useful for sharing data between sibling components.

    • Example: a shopping cart service that persists the cart data across

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - only one advise stay confident with all your answers and always answer in brief.

Skills evaluated in this interview

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 Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude and reasoning questions

Round 2 - Coding Test 

List,tuple,set,dictionary basic questions

Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Software Engineer Interview Questions & Answers

user image Kaveri Karanjkhele

posted on 14 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Prime number program
  • Ans. 

    A prime number program checks if a given number is only divisible by 1 and itself.

    • Check if the number is greater than 1

    • Iterate from 2 to the square root of the number and check for divisibility

    • If no divisors found, the number is prime

  • Answered by AI
  • Q2. Fibbonacci series optimal solution
  • Ans. 

    The optimal solution for generating Fibonacci series efficiently.

    • Use dynamic programming to store previously calculated values to avoid redundant calculations.

    • Implement a recursive function with memoization to store and reuse calculated values.

    • Iterate through the series using a loop to generate Fibonacci numbers efficiently.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Hashmap internal impl asked
  • Q2. Hashmap internal impl lllp

Xoriant interview questions for designations

 Senior Software Engineer

 (26)

 Associate Software Engineer

 (12)

 Software Development Engineer

 (1)

 Senior Software Engineer 2

 (2)

 Software Developer

 (6)

 Senior Software Developer

 (1)

 Associate Software Programmer

 (1)

 Software Developer Intern

 (1)

Software Engineer Interview Questions & Answers

user image amol suryawanshi

posted on 26 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is angular, javascript
  • Ans. 

    Angular is a popular front-end framework for building dynamic web applications, while JavaScript is a programming language commonly used for web development.

    • Angular is a front-end framework developed by Google for building single-page applications

    • JavaScript is a programming language used for adding interactivity to web pages

    • Angular uses TypeScript, a superset of JavaScript, for development

    • JavaScript is widely used for ...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Xoriant Interview Questions

Interview experience
5
Excellent
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 - Technical 

(1 Question)

  • Q1. About Abinitio components
Round 3 - Technical 

(1 Question)

  • Q1. About abinitio components,unix,SQL
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Software Engineer Jobs at Xoriant

View all
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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. C# basics SQL queries MVC questions
Round 3 - Technical 

(1 Question)

  • Q1. Oops concept. MVC SQL questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are OOps concepts?
  • Ans. 

    Object-oriented programming concepts that help in organizing and designing code for reusability and maintainability.

    • 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.

    • Abstraction: Hiding the complex implementation det...

  • Answered by AI
  • Q2. What is Interface ?
  • Ans. 

    An interface in software engineering is a contract that defines the methods that a class must implement.

    • Interfaces in Java are used to achieve abstraction and multiple inheritance.

    • Interfaces contain only method signatures, not method bodies.

    • Classes can implement multiple interfaces in Java.

    • Interfaces are used to define the behavior of a class without specifying how that behavior is implemented.

  • Answered by AI
  • Q3. What are ACID property?
  • Ans. 

    ACID properties are a set of properties that guarantee the reliability of database transactions.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that multiple transactions can run concurrently...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Xoriant Software Engineer interview:
  • Java
  • DBMS
  • OOPS
  • Data Structures
Interview preparation tips for other job seekers - Focus on Java ,Oops,DB questions

Software Engineer interview

user image Insight learners

posted on 24 Dec 2021

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

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hour, with both aptitude and coding

Round 2 - Technical 

(2 Questions)

  • Q1. About cloud technologies
  • Q2. Java questions and DSA

Software Engineer Interview Questions & Answers

user image Rajibuddin Ahmed

posted on 13 Oct 2023

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Some java question with coding test
  • Q2. Return a sorted array given multiple multiple sorted array
  • Ans. 

    Merge multiple sorted arrays into one sorted array

    • Merge all arrays into one array

    • Sort the merged array

    • Return the sorted array

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Some previous company question and salary discussion

Interview Preparation Tips

Topics to prepare for Xoriant Software Engineer interview:
  • Java
  • Spring Boot
  • MySQL
  • Java 8

Skills evaluated in this interview

Xoriant Interview FAQs

How many rounds are there in Xoriant Software Engineer 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 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 Xoriant. The most common topics and skills that interviewers at Xoriant expect are Javascript, Java, JQuery, Core Java and Spring Boot.
What are the top questions asked in Xoriant Software Engineer interview?

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

  1. How would you manage multi role login syst...read more
  2. CSS methods to fixed positions of headers and footer...read more
  3. What Data binding in angul...read more
How long is the Xoriant Software Engineer interview process?

The duration of Xoriant Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Xoriant Software Engineer Interview Process

based on 7 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more

People are getting interviews through

based on 12 Xoriant interviews
Job Portal
Company Website
83%
8%
9% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Join Xoriant Imagination Realized
Xoriant Software Engineer Salary
based on 1.7k salaries
₹3 L/yr - ₹14 L/yr
At par with the average Software Engineer Salary in India
View more details

Xoriant Software Engineer Reviews and Ratings

based on 260 reviews

4.1/5

Rating in categories

4.0

Skill development

4.2

Work-Life balance

3.8

Salary & Benefits

3.8

Job Security

4.1

Company culture

3.6

Promotions/Appraisal

3.9

Work Satisfaction

Explore 260 Reviews and Ratings
Software Engineer

Pune

5-9 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.7k salaries
unlock blur

₹3 L/yr - ₹14 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹8.7 L/yr - ₹33 L/yr

Technical Lead
619 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Softwaretest Engineer
617 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Senior Test Engineer
429 salaries
unlock blur

₹8.5 L/yr - ₹31.5 L/yr

Explore more salaries
Compare Xoriant with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview