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 Java Developer Interview Questions and Answers

Updated 8 May 2024

Xoriant Java Developer Interview Experiences

2 interviews found

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 Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Java progaming, coding

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

Interview Questionnaire 

5 Questions

  • Q1. Spring bean lifecycle
  • Q2. Will finally block execute if try and catch have return statement?
  • Ans. 

    Yes, finally block will execute even if try and catch have return statement.

    • The finally block is always executed regardless of whether an exception is thrown or not.

    • The return statement in try or catch block will be executed before the finally block.

    • Finally block is commonly used to release resources or perform cleanup operations.

  • Answered by AI
  • Q3. If we have @Service, @Controller, @Configuration, and @Repository why do we need @Component? Can we replace them with @Component?
  • Ans. 

    The @Component annotation is a generic stereotype annotation that can be used in place of other annotations.

    • The @Component annotation is a general-purpose annotation that can be used in place of @Service, @Controller, @Configuration, and @Repository annotations.

    • However, using more specific annotations can help in better understanding the role of the annotated class.

    • For example, using @Service annotation on a class that...

  • Answered by AI
  • Q4. Questions on Stored proc calls
  • Q5. Can we call == to compare enums
  • Ans. 

    No, we cannot use == to compare enums.

    • Enums are objects and == compares object references, not values.

    • We should use .equals() method to compare enum values.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Depending on the project they are hiring for, The questions could be moderate to tough for experienced professionals. Work on your basics as they focus more on that.

Skills evaluated in this interview

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Java Developer Jobs at Xoriant

View all

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1 . Oops concept in detail 2 DBMS 3. Data base query
Round 2 - HR 

(1 Question)

  • Q1. Document verification

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers should be clear on basic concepts.
For experienced should be detailed knowledge on their domain.

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Aptitude test duration 90 min 100 question

Round 3 - Coding Test 

Coding test 50 code 100 marks 60 min

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. code in c , c++ , java is very important

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic java concepts like collection frame work, exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics well, be confident, show you are flexible enough to learn

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Technical Interview
Experience: They asked java basics,
what we wrote in resume will ask
about project
Tips: please prepare basics things

Xoriant Interview FAQs

How many rounds are there in Xoriant Java Developer interview?
Xoriant interview process usually has 1 rounds. The most common rounds in the Xoriant interview process are Coding Test.
How to prepare for Xoriant Java Developer 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, Hibernate, Spring, Spring Boot and Microservices.
What are the top questions asked in Xoriant Java Developer interview?

Some of the top questions asked at the Xoriant Java Developer interview -

  1. If we have @Service, @Controller, @Configuration, and @Repository why do we nee...read more
  2. Will finally block execute if try and catch have return stateme...read more
  3. Can we call == to compare en...read more

Tell us how to improve this page.

Xoriant Java Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Xoriant Imagination Realized
Xoriant Java Developer Salary
based on 78 salaries
₹3.2 L/yr - ₹10.1 L/yr
11% less than the average Java Developer Salary in India
View more details

Xoriant Java Developer Reviews and Ratings

based on 4 reviews

5.0/5

Rating in categories

4.7

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

4.7

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 4 Reviews and Ratings
Virtual Weekend drive Java developers NMS EMS on 22 Feb and 23 Feb

Hyderabad / Secunderabad,

Chennai

+1

8-13 Yrs

Not Disclosed

Virtual Weekend Drive For Java Developer on 22 Feb and 23 Feb

Chennai,

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Java Developer

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
599 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
574 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
447 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Xoriant with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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