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

based on 2k Reviews

Filter interviews by

Xoriant Technical Lead Interview Questions and Answers

Updated 10 Dec 2024

Xoriant Technical Lead Interview Experiences

4 interviews found

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
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jun 2024.

Round 1 - HR 

(1 Question)

  • Q1. General hr questions
Round 2 - Technical 

(1 Question)

  • Q1. Ab initio questions
Round 3 - One-on-one 

(1 Question)

  • Q1. With the project manager
Round 4 - Client Interview 

(1 Question)

  • Q1. Overall experience and technical questions
Round 5 - HR 

(1 Question)

  • Q1. Final salary and other talks

Technical Lead Interview Questions Asked at Other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to productio ... read more
asked in Infosys
Q2. Managerial: 1) Explain any one past issue and its mitigation stra ... read more
Q3. Longest Substring Without Repeating Characters Problem Statement ... read more
asked in Wipro
Q4. What automation framework have you worked on?
asked in Cognizant
Q5. 1. Type of documentation for computer system validation. 2.Please ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a linked list.
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Nodes contain data and a reference to the next node

    • Can be singly linked (each node points to the next) or doubly linked (each node points to the next and previous)

    • Example: Node 1 -> Node 2 -> Node 3

  • Answered by AI
  • Q2. Find the middle node of a linked list.
  • Ans. 

    To find the middle node of a linked list, use the slow and fast pointer technique.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The node pointed to by the slow pointer at this point will be the middle node.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. How do you handle conflict between manager and developer
  • Ans. 

    Addressing conflict between manager and developer requires open communication, understanding both perspectives, and finding a mutually beneficial solution.

    • Encourage open communication between the manager and developer to understand each other's perspectives and concerns.

    • Facilitate a meeting to discuss the conflict and find common ground or compromises.

    • Seek to understand the underlying reasons for the conflict and addre...

  • Answered by AI
  • Q2. Where do you see yourself in next 5 years

Skills evaluated in this interview

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

Coding and concepts of data science

Xoriant interview questions for designations

 Technical Architect

 (1)

 Test Lead

 (8)

 Lead Business Analyst

 (1)

 Senior Test Lead

 (1)

 Technical Manager

 (1)

 Sdet Lead

 (1)

 Technical Support Engineer

 (1)

 Lead Data Scientist

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. React Life cycle methods
  • Q2. Machine coding with crypto price api
  • Ans. 

    Using a crypto price API to fetch and display real-time cryptocurrency prices in a machine coding project.

    • Utilize a crypto price API to fetch real-time cryptocurrency prices

    • Implement error handling for API requests

    • Display the fetched prices in a user-friendly format

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mix of coding, theory and design questions

Technical Lead Interview Questions & Answers

Encora user image Amit kumar upadhyay

posted on 28 Aug 2024

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

(2 Questions)

  • Q1. About NET Basics
  • Q2. NET Core and wep api
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Work experience
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 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 - Coding Test 

Hackerrank test with combination of MCQ and java program coding.

Round 3 - Technical 

(1 Question)

  • Q1. L1 technical and L2 client technical rounds. Asked questions from core java, spring boot, micro service and some java coding questions.
Round 4 - HR 

(1 Question)

  • Q1. Basic questions on personal details and overview about company and salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are looking for java development opportunity then prepare more java coding questions. Concentrate more on collection framework coding part.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 2 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 

(3 Questions)

  • Q1. Builder design pattern in java
  • Ans. 

    Builder design pattern is a creational design pattern used to construct complex objects step by step.

    • Builder pattern separates the construction of a complex object from its representation.

    • It allows the same construction process to create different representations of the object.

    • Useful when there are multiple ways to construct an object or when the object creation process is complex.

    • Example: StringBuilder in Java allows ...

  • Answered by AI
  • Q2. Docker, MQ series involved
  • Q3. JOIN Query with country , emp name
  • Ans. 

    JOIN query to retrieve country and employee name

    • Use JOIN keyword to combine data from multiple tables

    • Specify the columns to select from each table

    • Use ON keyword to specify the relationship between the tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - we need to work in depth in Design patterns , Micro services concepts

Skills evaluated in this interview

Xoriant Interview FAQs

How many rounds are there in Xoriant Technical Lead interview?
Xoriant interview process usually has 2-3 rounds. The most common rounds in the Xoriant interview process are HR, Technical and One-on-one Round.
How to prepare for Xoriant Technical Lead 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, Microservices, Spring Boot, Java and Python.
What are the top questions asked in Xoriant Technical Lead interview?

Some of the top questions asked at the Xoriant Technical Lead interview -

  1. How do you handle conflict between manager and develo...read more
  2. Find the middle node of a linked li...read more
  3. Write a linked li...read more

Tell us how to improve this page.

Xoriant Technical Lead Interview Process

based on 7 interviews

Interview experience

4.1
  
Good
View more
Join Xoriant Imagination Realized
Xoriant Technical Lead Salary
based on 579 salaries
₹12 L/yr - ₹40 L/yr
46% more than the average Technical Lead Salary in India
View more details

Xoriant Technical Lead Reviews and Ratings

based on 134 reviews

4.2/5

Rating in categories

4.0

Skill development

4.2

Work-life balance

3.9

Salary

3.8

Job security

4.1

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 134 Reviews and Ratings
Software Engineer
1.7k salaries
unlock blur

₹3.9 L/yr - ₹16 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹9 L/yr - ₹33 L/yr

Softwaretest Engineer
627 salaries
unlock blur

₹2.8 L/yr - ₹8.7 L/yr

Technical Lead
579 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Senior Test Engineer
494 salaries
unlock blur

₹7.7 L/yr - ₹33 L/yr

Explore more salaries
Compare Xoriant with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

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