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
Popular Designations

6 Interview questions

A Senior Software Engineer was asked 10mo ago
Q. Write an SQL query to solve a problem based on joins, similar to those found on LeetCode.
Ans. 

SQL joins combine rows from two or more tables based on related columns, essential for relational database queries.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.a_id;

  • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.a_id;

  • RIGHT JOIN: Returns all records fro...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 10mo ago
Q. Given a dataset of hotels, how would you find the number of bookings?
Ans. 

Calculate the number of hotel bookings from a given dataset of hotels and their booking details.

  • Identify the data structure: Ensure the dataset contains booking information, such as hotel ID, customer ID, and booking dates.

  • Count unique bookings: Use a method to count unique entries based on hotel ID and booking dates to avoid duplicates.

  • Example: If hotel A has 3 bookings on different dates and hotel B has 2 bookin...

View all Senior Software Engineer interview questions
A Software Developer Intern was asked
Q. Given an integer array nums and an integer k, return true if nums has a continuous subarray of size at least two whose elements sum up to a multiple of k, or false otherwise.
Ans. 

Determine if a continuous subarray sums to a multiple of k.

  • A continuous subarray is defined as a sequence of elements from the array.

  • The sum of the subarray must be a multiple of k (i.e., sum % k == 0).

  • Example: For nums = [23, 2, 4, 6, 7] and k = 6, the subarray [2, 4] sums to 6, which is a multiple of 6.

  • Use a hashmap to store the cumulative sum and its index to check for previous occurrences.

  • If the same cumulativ...

View all Software Developer Intern interview questions
A Software Development Engineer Intern was asked
Q. You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
Ans. 

Dynamic programming approach to solve the stair climbing problem efficiently.

  • Define the problem: Given n stairs, find the number of ways to reach the top.

  • Base cases: If n = 0, return 1; if n = 1, return 1.

  • Recurrence relation: ways(n) = ways(n-1) + ways(n-2).

  • Use an array to store results of subproblems to avoid recomputation.

  • Example: For n = 4, ways(4) = ways(3) + ways(2) = 3 + 2 = 5.

View all Software Development Engineer Intern interview questions
A Software Development Engineer Intern was asked
Q. You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the fut...
Ans. 

Determine the best time to buy and sell stock to maximize profit from given price data.

  • Identify the lowest price to buy before a higher price to sell.

  • Track price changes over time to find optimal buy/sell points.

  • Example: Prices = [7, 1, 5, 3, 6, 4]; Buy at 1, sell at 6 for max profit of 5.

  • Consider edge cases: prices always decreasing means no profit can be made.

View all Software Development Engineer Intern interview questions
A Software Development Engineer Intern was asked
Q. 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.

View all Software Development Engineer Intern interview questions

Xeno Interview Experiences

5 interviews found

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 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
  • Ans. 

    Dynamic programming approach to solve the stair climbing problem efficiently.

    • Define the problem: Given n stairs, find the number of ways to reach the top.

    • Base cases: If n = 0, return 1; if n = 1, return 1.

    • Recurrence relation: ways(n) = ways(n-1) + ways(n-2).

    • Use an array to store results of subproblems to avoid recomputation.

    • Example: For n = 4, ways(4) = ways(3) + ways(2) = 3 + 2 = 5.

  • Answered by AI
  • 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
  • Ans. 

    Determine the best time to buy and sell stock to maximize profit from given price data.

    • Identify the lowest price to buy before a higher price to sell.

    • Track price changes over time to find optimal buy/sell points.

    • Example: Prices = [7, 1, 5, 3, 6, 4]; Buy at 1, sell at 6 for max profit of 5.

    • Consider edge cases: prices always decreasing means no profit can be made.

  • Answered by AI
  • Q5. Project discussion based on resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa well

Skills evaluated in this interview

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

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.
  • Ans. 

    Calculate the number of hotel bookings from a given dataset of hotels and their booking details.

    • Identify the data structure: Ensure the dataset contains booking information, such as hotel ID, customer ID, and booking dates.

    • Count unique bookings: Use a method to count unique entries based on hotel ID and booking dates to avoid duplicates.

    • Example: If hotel A has 3 bookings on different dates and hotel B has 2 bookings, t...

  • Answered by AI
  • Q2. SQL Query based upon join leetcode.
  • Ans. 

    SQL joins combine rows from two or more tables based on related columns, essential for relational database queries.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.a_id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.a_id;

    • RIGHT JOIN: Returns all records from the...

  • Answered by AI
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
  • Ans. 

    Determine if a continuous subarray sums to a multiple of k.

    • A continuous subarray is defined as a sequence of elements from the array.

    • The sum of the subarray must be a multiple of k (i.e., sum % k == 0).

    • Example: For nums = [23, 2, 4, 6, 7] and k = 6, the subarray [2, 4] sums to 6, which is a multiple of 6.

    • Use a hashmap to store the cumulative sum and its index to check for previous occurrences.

    • If the same cumulative sum...

  • Answered by AI

Interview Preparation Tips

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

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

Top trending discussions

View All
Interview Tips & Stories
1w
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 Xeno?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. What is Seo and how its works
  • Ans. 

    SEO stands for Search Engine Optimization. It is the process of optimizing a website to improve its visibility on search engines.

    • SEO involves optimizing website content, meta tags, and backlinks to improve search engine rankings.

    • Keywords play a crucial role in SEO, as they help search engines understand the content of a website.

    • Quality content, mobile optimization, and user experience are also important factors in SEO.

    • ...

  • Answered by AI
  • Q2. Steps for SEO Checklist
  • Ans. 

    SEO checklist includes keyword research, on-page optimization, link building, and tracking results.

    • Perform keyword research to identify relevant keywords for your website

    • Optimize on-page elements such as title tags, meta descriptions, and headings

    • Build high-quality backlinks from reputable websites

    • Track and analyze SEO performance using tools like Google Analytics

  • Answered by AI
  • Q3. How to Do Content Optimization
  • Ans. 

    Content optimization involves improving the quality and relevance of content to increase visibility and engagement.

    • Research keywords and incorporate them strategically into the content

    • Optimize meta tags and descriptions for search engines

    • Create high-quality, engaging content that provides value to the audience

    • Use internal and external links to improve SEO

    • Regularly update and refresh content to keep it relevant and curr...

  • Answered by AI
  • Q4. How to optimize website
  • Q5. How to work with team on a diffrent projects
  • Ans. 

    To work with a team on different projects, communication, delegation, collaboration, and flexibility are key.

    • Communicate clearly with team members about project goals and expectations.

    • Delegate tasks based on team members' strengths and expertise.

    • Collaborate effectively by encouraging open communication and feedback.

    • Be flexible and adaptable to changes in project scope or timeline.

    • Provide support and resources to team m...

  • Answered by AI
  • Q6. How to initiate audits of the website
  • Ans. 

    Initiating audits of a website involves planning, conducting, and analyzing the review process to ensure compliance and effectiveness.

    • Develop a comprehensive audit plan outlining the scope, objectives, and methodology.

    • Utilize automated tools to scan for technical issues such as broken links, duplicate content, and page load speed.

    • Manually review the website for design, content accuracy, user experience, and SEO optimiz...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is Current salary
  • Ans. 

    I am currently earning $60,000 per year.

    • My current salary is $60,000 per year.

    • I am earning $5,000 per month.

    • I received a 10% raise last year, bringing my salary to $60,000.

  • Answered by AI
  • Q2. What is expected salary
  • Ans. 

    I am looking for a competitive salary based on my experience, skills, and the responsibilities of the Team Lead role.

    • Research industry standards and salary ranges for Team Lead positions

    • Consider my level of experience and expertise in the field

    • Factor in the scope of responsibilities and leadership required for the role

    • Negotiate based on the company's budget and benefits package

    • Be open to discussing salary expectations ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Highly knowledgable team, you cant say they dont know anything. The interview round is good if you know about SEO on a serious note.

Skills evaluated in this interview

I applied via Referral and was interviewed before Sep 2021. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Technical questions,
  • Q2. Personal questions with respect to past office experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared technically to provide correct answers
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2022. 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 - Assignment 

Firstly, they will see your portfolio than will give you assignment to complete.

Round 3 - One-on-one 

(2 Questions)

  • Q1. After submitting task, they will discuss and tell you about their company, company vision and how to achieve that growth
  • Q2. Just common question regarding yourself & past work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - give your 100% and company will support you like anything.

Interview Questions & Answers

Viska user image Anonymous

posted on 25 Jan 2023

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

I applied via Approached by Company and was interviewed in Dec 2022. 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 - One-on-one 

(1 Question)

  • Q1. Basic questions was asked. what are your current job profile, do you know about us?...E.T.C
Round 3 - Lecture session 

(1 Question)

  • Q1. They gave us a full fledged motivational speech for a hour and in last you have to answer 3 question that have nothing to do with the class. so, don't be afraid.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are capable of doing it then go for it. Interview is easy but working over there is tough.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

SEO audits for the website

Interview Preparation Tips

Interview preparation tips for other job seekers - New job seekers must take certain steps to begin their search.

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 IT Sales, IT Product Sales, SQL, CRM and Java.
What are the top questions asked in Xeno interview?

Some of the top questions asked at the Xeno interview -

  1. Given a data set of hotel you need to find number of booki...read more
  2. SQL Query based upon join leetco...read more
  3. 523. Continuous Subarray ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 6 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Digitabytes Interview Questions
5.0
 • 5 Interviews
We Think North Interview Questions
4.5
 • 4 Interviews
Liveupx Interview Questions
5.0
 • 2 Interviews
CrissCross Lab Interview Questions
3.5
 • 2 Interviews
BNF Digital Interview Questions
4.8
 • 2 Interviews
Quantum Interview Questions
3.8
 • 1 Interview
Viska Interview Questions
3.7
 • 1 Interview
Dramantram Interview Questions
3.2
 • 1 Interview
View all

Xeno Reviews and Ratings

based on 9 reviews

3.3/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.2

Salary

2.2

Job security

3.5

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 9 Reviews and Ratings
Customer Success Associate

Mumbai

1-2 Yrs

Not Disclosed

Senior Customer Success Manager

New Delhi

4-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
7 salaries
unlock blur

₹9 L/yr - ₹22.5 L/yr

Data Analyst
4 salaries
unlock blur

₹4.2 L/yr - ₹10 L/yr

Web Developer
4 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Territory Manager
4 salaries
unlock blur

₹3.5 L/yr - ₹4.5 L/yr

Business Head
4 salaries
unlock blur

₹40 L/yr - ₹48 L/yr

Explore more salaries
Compare Xeno with

CallOne Consultants

4.8
Compare

Viska

3.7
Compare

Conversion Perk

5.0
Compare

K and A Technology

3.1
Compare
write
Share an Interview