Upload Button Icon Add office photos

Filter interviews by

Xyz Company Software Engineer Interview Questions and Answers

Updated 12 May 2025

Xyz Company Software Engineer Interview Experiences

14 interviews found

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

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

During the coding test, I was asked to write a program to check the frequency of characters in a string.

Round 2 - Technical 

(5 Questions)

  • Q1. What is Java , what are the four pillars of java
  • Ans. 

    Java is a popular programming language known for its platform independence and object-oriented approach.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • Object-oriented programming is a key feature of Java, allowing for code reusability and modularity

    • The four pillars of Java are: Inheritance, Encapsulation, Abstraction, and Polymorphism

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Related to collection framework
  • Q3. What is recursion, write a code for it
  • Ans. 

    Recursion is a programming technique where a function calls itself to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • A base case is needed to stop the recursion and prevent infinite loops.

    • Example: Factorial calculation using recursion - function factorial(n) { return n === 0 ? 1 : n * factorial(n-1); }

  • Answered by AI
  • Q4. Why we don't use pointers in java
  • Q5. What are the difference between array and arraylist

Interview Preparation Tips

Interview preparation tips for other job seekers - well prepare for all the questions like Java and oops
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. Tell about yourself
  • Q2. Your acheivements

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Reverse a string using functional programming java

Round 2 - Assignment 

Springboot implementation crud operation for airline booking

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for core java and springboot
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Math , reasoning , nothing else h .h

Round 2 - Coding Test 

Arrays arrange, string range h j

Software Engineer Interview Questions & Answers

user image 08_Simran_ Bodale

posted on 16 Jul 2024

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

SQL , Logical, Verbal

Round 2 - Technical 

(1 Question)

  • Q1. What is IP Address?
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.

    • Graduated with a degree in Computer Science from XYZ University, where I developed a solid foundation in algorithms and data structures.

    • Worked at ABC Corp as a software developer, where I led a team to build a web application that improved user engagement by 30%.

    • Proficient in languages such as ...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Software Development
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is react explain

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
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 - Assignment 

Assignment which consists of both frontend and backend and build e commerce website

Round 3 - Technical 

(1 Question)

  • Q1. Some technical questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2023. 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 - HR 

(1 Question)

  • Q1. Accounts are very important for hr
  • Ans. Yes accounts are very important for hr
  • Answered Anonymously
Round 3 - HR 

(2 Questions)

  • Q1. Tell me a important question for hr
  • Q2. Do you know that is hr salary is a very high
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Feb 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 - Aptitude Test 

General maths , english and logical reasoning

Round 3 - Coding Test 

Python program to find out the sum of even digits in a list

Round 4 - HR 

(2 Questions)

  • Q1. Basic personal information about parents
  • Q2. Your current location

Interview Preparation Tips

Interview preparation tips for other job seekers - Better to prepare nice and each concept should be very perfect and be confident always

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Xyz Company?
Ask anonymously on communities.

Xyz Company Interview FAQs

How many rounds are there in Xyz Company Software Engineer interview?
Xyz Company interview process usually has 2-3 rounds. The most common rounds in the Xyz Company interview process are Coding Test, Resume Shortlist and HR.
What are the top questions asked in Xyz Company Software Engineer interview?

Some of the top questions asked at the Xyz Company Software Engineer interview -

  1. What are the difference between array and arrayl...read more
  2. What is Java , what are the four pillars of j...read more
  3. Why we don't use pointers in j...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 13 interview experiences

Difficulty level

Easy 60%
Moderate 40%

Duration

Less than 2 weeks 80%
2-4 weeks 20%
View more
Xyz Company Software Engineer Salary
based on 1.4k salaries
₹14.4 L/yr - ₹31.8 L/yr
153% more than the average Software Engineer Salary in India
View more details

Xyz Company Software Engineer Reviews and Ratings

based on 25 reviews

3.8/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.8

Salary

3.8

Job security

3.7

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 25 Reviews and Ratings
Software Developer
1.6k salaries
unlock blur

₹18.8 L/yr - ₹46 L/yr

Software Engineer
1.4k salaries
unlock blur

₹14.4 L/yr - ₹31.8 L/yr

Manager
897 salaries
unlock blur

₹22.9 L/yr - ₹41.9 L/yr

Senior Software Engineer
744 salaries
unlock blur

₹17.7 L/yr - ₹33 L/yr

Team Lead
736 salaries
unlock blur

₹19.9 L/yr - ₹35 L/yr

Explore more salaries
Compare Xyz Company with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare
write
Share an Interview