Upload Button Icon Add office photos

Xeno

Compare button icon Compare button icon Compare

Filter interviews by

Xeno Interview Questions and Answers

Updated 10 Dec 2024

Xeno Interview Experiences

Popular Designations

5 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

He will be asking you about the logic you used to solve the OA questions. So prepare well.
He then asked questions from my resume and asked me to code and explain cycle in a linked list. I easily did the coding part using brute force and optimized approach but then he asked my to give proof that why tortoise and hare algo will work here. I explained him the mathematical proof.

Round 2 - One-on-one 

(2 Questions)

  • Q1. In this round he started asking questions from my resume and then gave me DSA question to solve which was 523. Continuous subarray sum and then he asked me several question related to Reactjs , Nodejs , Mo...
  • Q2. 523. Continuous Subarray sum

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa and full stack questions

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. 2 sum problem [leetcode]
  • Q2. Linkedlist problem
  • Ans. 

    Implement various operations on a linked list and solve related problems like reversing a linked list or detecting a cycle.

    • Understand the basic structure of a linked list with nodes containing data and a reference to the next node.

    • For insertion, update the pointers of the nodes accordingly to maintain the sequence.

    • For deletion, adjust the pointers to skip the node to be deleted.

    • To reverse a linked list, iterate through...

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Xeno Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Given a data set of hotel you need to find number of booking.
  • Q2. SQL Query based upon join leetcode.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
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 Resume tips
Round 2 - Coding Test 

Easy basic dsa questions

Round 3 - Technical 

(5 Questions)

  • Q1. Basics of dsa and project discussion
  • Q2. Stair climbing based on dp
  • Q3. Longest common subsequence
  • Ans. 

    Longest common subsequence is the longest sequence of characters that appear in the same order in two or more strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of longest common subsequences of substrings.

    • Traverse the array to find the longest common subsequence.

  • Answered by AI
  • Q4. Buy and sell stock
  • Q5. Project discussion based on resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa well

Skills evaluated in this interview

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

Xeno interview questions for popular designations

 Senior Consultant

 (1)

 Software Developer

 (1)

 Senior Software Engineer

 (1)

 Software Development Engineer Intern

 (1)

 Software Developer Intern

 (1)

Senior Consultant Interview Questions & Answers

user image Abrar Mansuri

posted on 18 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Sql questions, analytics questions, case study

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Leadership principles, Previous experience, Managerial and logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Not really tough, easy to crack if prepared

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Pivot and excel questions
  • Q2. All about excel

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very simple self intro and excel questions and basic macro

I applied via Recruitment Consultant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. DS Algo Questions on Trees. Leadership Principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Read up on DS Algo and white paper coding and Leadership Principles

I was interviewed before Sep 2020.

Round 1 - Coding Test 

Round duration - 60 minutes
Round difficulty - Easy

Round 2 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

Round 3 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

At the beginning of this round, the interviewer asked me about the data structures I knew. Linked lists, trees, graphs, arrays etc. was my answer. He asked me how well I knew Dynamic Programming. I said I wasn’t strong in that and he said that he would ask me a question on dynamic programming for sure.

Round 4 - Face to Face 

Round duration - 40 minutes
Round difficulty - Easy

 

The interviewer asked me if I was comfortable with the interview process so far and how the previous interviews were. I said it was good and he gave me the first problem to solve.

Round 5 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The interviewer asked me some Com­puter Sci­ence‍ fundamentals in this round as well as some behavioural questions.

  • Q1. Implement a Trie data structure and write functions to insert and search for a few words in it.
  • Ans. 

    Implement a Trie data structure with insert and search functions.

    • Create a TrieNode class with children and isEndOfWord attributes.

    • Implement insert function to add words by iterating through characters.

    • Implement search function to check if a word exists by traversing the Trie.

    • Example: Insert 'apple', 'banana', 'orange' and search for 'apple' and 'grape'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria 7 CGPA Amazon interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating System, Database Management System, Object-Oriented Programming SystemTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Do lot of hard work and practice of  Data Structures and Algorithms based questions. I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Make your resume short and try to make it of one page only and do mention all your skills which you are confident of in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way
Contribute & help others!
anonymous
You can choose to be anonymous

Xeno Interview FAQs

How many rounds are there in Xeno interview?
Xeno interview process usually has 1-2 rounds. The most common rounds in the Xeno interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Xeno 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 Xeno. The most common topics and skills that interviewers at Xeno expect are Java, SQL, Analytics, IT Sales and Python.
What are the top questions asked in Xeno interview?

Some of the top questions asked at the Xeno interview -

  1. Longest common subseque...read more
  2. Linkedlist prob...read more
  3. In this round he started asking questions from my resume and then gave me DSA q...read more

Recently Viewed

INTERVIEWS

TCE

No Interviews

SALARIES

Tata Steel

INTERVIEWS

NetEdge Computing Solutions

No Interviews

REVIEWS

Tata Steel

No Reviews

INTERVIEWS

uTrade Solutions

No Interviews

INTERVIEWS

Meesho

No Interviews

SALARIES

uTrade Solutions

JOBS

uTrade Solutions

No Jobs

LIST OF COMPANIES

Discover companies

Find best workplace

SALARIES

uTrade Solutions

Tell us how to improve this page.

Xeno Interview Process

based on 6 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Paytm Interview Questions
3.3
 • 747 Interviews
Swiggy Interview Questions
3.8
 • 424 Interviews
Zomato Interview Questions
3.8
 • 309 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
Ola Cabs Interview Questions
3.4
 • 137 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
BookMyShow Interview Questions
3.9
 • 23 Interviews
Digitabytes Interview Questions
5.0
 • 5 Interviews
View all

Fast track your campus placements

View all

Xeno Reviews and Ratings

based on 8 reviews

3.3/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.4

Salary

2.5

Job security

3.6

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Xeno with

Zomato

3.8
Compare

Swiggy

3.8
Compare

Ola Cabs

3.4
Compare

Uber

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent