Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by XenonStack Team. If you also belong to the team, you can get access from here

XenonStack Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

XenonStack Interview Questions and Answers

Updated 7 Jun 2025
Popular Designations

7 Interview questions

An Associate Software Engineer was asked 3mo ago
Q. What is ArrayList in Java?
Ans. 

ArrayList in Java is a resizable array implementation of the List interface, allowing dynamic storage of elements.

  • Dynamic Size: Unlike arrays, ArrayLists can grow and shrink in size. Example: ArrayList<String> list = new ArrayList<>();

  • Indexed Access: Elements can be accessed using an index. Example: list.add("Hello"); String str = list.get(0);

  • Type Safety: ArrayLists can hold objects of a specific type ...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 3mo ago
Q. How do you automate dropdown menus?
Ans. 

Automating dropdowns involves selecting options programmatically in UI testing frameworks.

  • Use Selenium WebDriver to interact with dropdowns: `Select select = new Select(driver.findElement(By.id('dropdownId')));`

  • To select by visible text: `select.selectByVisibleText('Option1');`

  • To select by index: `select.selectByIndex(0);`

  • To select by value: `select.selectByValue('value1');`

  • Ensure to wait for the dropdown to be vi...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 6mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reverse a linked list by changing the direction of pointers.

  • Start with three pointers: current, previous, and next.

  • Iterate through the linked list, updating pointers to reverse the direction.

  • Update the head of the linked list to be the previous node once iteration is complete.

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. What technology do you want to work on?
Ans. 

I am interested in working on web development technologies.

  • I have experience in HTML, CSS, and JavaScript.

  • I am familiar with front-end frameworks like React and Angular.

  • I am also interested in back-end technologies like Node.js and PHP.

  • I am excited to learn new technologies and stay up-to-date with industry trends.

View all Associate Software Engineer interview questions
A Business Analyst was asked
Q. Explain the C language in a way that a non-technical person can understand.
Ans. 

C is a programming language used to create software and operating systems.

  • C is a low-level language that allows direct access to computer hardware.

  • It is used to create efficient and fast programs.

  • C is the foundation for many other programming languages such as C++, Java, and Python.

  • Examples of C programs include operating systems, device drivers, and video games.

View all Business Analyst interview questions
An Associate Software Engineer was asked 6mo ago
Q. Merge Two Linked Lists Problem Statement Given two sorted linked lists, merge them so that the resulting linked list is also sorted. The merge should be done without creating new nodes. Instead, you will re...
Ans. 

Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

  • Traverse both linked lists simultaneously

  • Compare the values of nodes and rearrange pointers accordingly

  • Continue until one of the lists is fully traversed

View all Associate Software Engineer interview questions
An Associate Software Engineer Trainee was asked
Q. We were supposed to design a full stack website
Ans. 

Designing a full stack website involves creating both front-end and back-end components to provide a complete user experience.

  • Identify the requirements and functionalities of the website

  • Design the user interface using HTML, CSS, and JavaScript

  • Develop the back-end using a server-side language like Node.js or Python

  • Implement a database to store and retrieve data

  • Test the website for functionality and user experience

  • D...

View all Associate Software Engineer Trainee interview questions
Are these interview questions helpful?

XenonStack Interview Experiences

29 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image ROXX Production

posted on 29 Nov 2024

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Quant questions, you will be able to clear it easily

Round 2 - Assignment 

Task1: create a website with 3 wepages

task2: create custom linux commands

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Assignment 

1. Aptitude 2.Assignment

Round 2 - Assignment 

NA NA NA NA NA NA Na

Round 3 - HR 

(2 Questions)

  • Q1. NA NA NA na
  • Q2. NA

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your worst they will still hire you
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

Some basic question you can google them

Round 2 - Assignment 

Easy One from Linux and one a web site in HTML CSS

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Join this. Very Nice Company Read all reviews. Or ask HR while you are in HR round.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. What is arrayList in Java?
  • Ans. 

    ArrayList in Java is a resizable array implementation of the List interface, allowing dynamic storage of elements.

    • Dynamic Size: Unlike arrays, ArrayLists can grow and shrink in size. Example: ArrayList<String> list = new ArrayList<>();

    • Indexed Access: Elements can be accessed using an index. Example: list.add("Hello"); String str = list.get(0);

    • Type Safety: ArrayLists can hold objects of a specific type when ...

  • Answered by AI
  • Q2. How to you automation in dropdown?
  • Ans. 

    Automating dropdowns involves selecting options programmatically in UI testing frameworks.

    • Use Selenium WebDriver to interact with dropdowns: `Select select = new Select(driver.findElement(By.id('dropdownId')));`

    • To select by visible text: `select.selectByVisibleText('Option1');`

    • To select by index: `select.selectByIndex(0);`

    • To select by value: `select.selectByValue('value1');`

    • Ensure to wait for the dropdown to be visible...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Hypothetical question
  • Q2. Skill set question

Interview Preparation Tips

Interview preparation tips for other job seekers - Strongly Not recommended
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1 hours of aptitude test medium level

Round 2 - Coding Test 

Basic dsa questions and technical question

Round 3 - Group Discussion 

How AI helps other to find optimal solutions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

We were given no of tasks which consisted of building a website and some linux based tasks and given a time of 9 hours .

Round 2 - One-on-one 

(1 Question)

  • Q1. It was a basic HR round
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Questions on quants, verbal ability

Software Developer Interview Questions & Answers

user image DEEPAK KUMAR

posted on 28 Feb 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Assignment 

They will give you something to make in 2 hours time.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Easy they just ask about your resume stuff
  • Q2. Introduction of yourself family and all
  • Q3. Project you made explanation

Interview Preparation Tips

Interview preparation tips for other job seekers - Just dont go if you arr not willing for cloud computing stuff

Top trending discussions

View All
Interview Tips & Stories
2w
boredinlife
·
works at
Mercer
I left in the middle of an interview.
M a self-taught developer. been working really hard, trying to break into tech. Two days ago, I got approached by an hr from this e learning company for an IT role. I was super nervous but also excited because it felt like maybe this is it. The interview was on teams with 9 experienced pros all with degrees and certifications while I had no formal IT background, just self-taught skills. I felt completely out of place. Most of the interviewers were kind and said I could learn on the job. But one person kept throwing back-to-back questions with shady comments after every answer made me feel like I wasn’t good enough. It crushed my confidence About 10 minutes before the interview ended, I panicked. Anxiety took over, so I faked a network issue and left the call. Then I just broke down. I didn’t want to be disrespectful, so I quickly emailed saying I got disconnected. Truth is, I was overwhelmed and felt like a total fraud. I’ve wanted a job in tech for so long.
Got a question about XenonStack?
Ask anonymously on communities.

XenonStack Interview FAQs

How many rounds are there in XenonStack interview?
XenonStack interview process usually has 2-3 rounds. The most common rounds in the XenonStack interview process are HR, Aptitude Test and Assignment.
How to prepare for XenonStack 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 XenonStack. The most common topics and skills that interviewers at XenonStack expect are Python, SQL, Javascript, Consulting and Analytical Chemistry.
What are the top questions asked in XenonStack interview?

Some of the top questions asked at the XenonStack interview -

  1. Explain C language to a non technical pers...read more
  2. what technology you want to work...read more
  3. How to you automation in dropdo...read more
How long is the XenonStack interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.2/5

based on 29 interview experiences

Difficulty level

Easy 38%
Moderate 62%

Duration

Less than 2 weeks 79%
2-4 weeks 21%
View more

Interview Questions from Similar Companies

ENH iSecure Interview Questions
4.1
 • 29 Interviews
Convin Interview Questions
4.3
 • 22 Interviews
Miko Interview Questions
3.3
 • 11 Interviews
Netomi Interview Questions
4.4
 • 11 Interviews
Habilelabs Interview Questions
4.1
 • 8 Interviews
Codemonk Interview Questions
3.9
 • 8 Interviews
Ikarus 3D Interview Questions
3.0
 • 8 Interviews
OnlineSales.ai Interview Questions
2.9
 • 6 Interviews
Avaamo Interview Questions
3.4
 • 6 Interviews
View all

XenonStack Reviews and Ratings

based on 206 reviews

3.1/5

Rating in categories

3.4

Skill development

3.0

Work-life balance

3.1

Salary

3.0

Job security

3.1

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 206 Reviews and Ratings
Product Marketing Associate

Mohali

2-5 Yrs

Not Disclosed

Enterprise Sales - B2B

Mohali,

Chandigarh

3-7 Yrs

Not Disclosed

Talent Acquisition Specialist

Mohali

2-5 Yrs

₹ 5.5-10 LPA

Explore more jobs
Associate Software Engineer
95 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Devops Engineer
36 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Software Engineer
19 salaries
unlock blur

₹4 L/yr - ₹7.5 L/yr

Data Engineer
15 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Software Developer
14 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Explore more salaries
Compare XenonStack with

ENH iSecure

4.1
Compare

Orpak Systems

3.6
Compare

Convin

4.3
Compare

Miko

3.3
Compare
write
Share an Interview