Upload Button Icon Add office photos
Engaged Employer

i

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

Xoxoday Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Xoxoday Interview Questions and Answers

Updated 7 Jun 2024

Xoxoday Interview Experiences

Popular Designations

7 interviews found

I applied via Referral and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Functional testing questions

Interview Preparation Tips

Interview preparation tips for other job seekers - There should be editor kind to write our answers instead of keeping like single line editor

Quantity Engineer Interview Questions asked at other Companies

Q1. How to accept of Civil engineering Materials at site
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Assignment 

A simple assignment containing a blog writing and keyword analysis.

Round 2 - One-on-one 

(1 Question)

  • Q1. Assignment was discussed.
Round 3 - HR 

(1 Question)

  • Q1. CTC discussion, relocation assistance, others.

Content Writer Interview Questions asked at other Companies

Q1. What are the steps to follow to write good content?
View answer (5)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. How will you handle the shift to a startup?
Round 2 - One-on-one 

(1 Question)

  • Q1. Give me an example of a difficult scenario with a customer and how you handled it.

Client Success Manager Interview Questions asked at other Companies

Q1. What are your expectations for setting goals and objectives?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Introduction question

Sales Development Representative Interview Questions asked at other Companies

Q1. How to improve sales skills
View answer (1)

Xoxoday interview questions for popular designations

 Customer Service Manager

 (1)

 Marketing Manager

 (1)

 Sales Development Representative

 (1)

 Content Writer

 (1)

 Client Success Manager

 (1)

 Production Analyst

 (1)

 Quantity Engineer

 (1)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2022. There were 3 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. Questions on past experience
  • Q2. Applied marketing questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions on past experience
  • Q2. Applied marketing questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company and use your experience to apply solutions to potential real-life problems they could be facing

Marketing Manager Interview Questions asked at other Companies

Q1. What the big opportunities to handle a sales in a worse situation i.e when prices & demand are low & vice versa
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Case Study 

How will design an ATM for blind people?

Production Analyst Interview Questions asked at other Companies

Q1. Minimum Time To Solve The Problems Given 'N' subjects, each containing a certain number of problems, and 'K' friends, assign subjects to friends such that each subject goes to exactly one friend, maintaining contiguity in assignment, aiming... read more
View answer (1)

Jobs at Xoxoday

View all
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2022. 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. Tell me about yourself
  • Q2. Tell me about challenges faced

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and we’ll prepared
Be through with your resume

Customer Service Manager Interview Questions asked at other Companies

Q1. How you will deal a Customer when our service regarding his car was poor and he doesn't want to come back in the workshop?
View answer (8)

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion

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

Round 1 - Coding Test 

Will be given Requirement to write code for Restraunt. Based on that have write code for delivering orders by delivery boys.

Round 2 - Technical 

(1 Question)

  • Q1. OOPS Concepts, Java Basics, Collections, MultiThreading

Interview Preparation Tips

Topics to prepare for LogiNext Solutions Software Engineer interview:
  • Java
  • OOPS
  • MySQL
  • Pattern Programming
Interview preparation tips for other job seekers - Focus on DSA and Logical Programming
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Lazy loading in react
  • Ans. 

    Lazy loading in React is a technique used to improve performance by loading components only when they are needed.

    • Lazy loading helps reduce initial load time by splitting the code into smaller chunks.

    • React.lazy() and Suspense are commonly used for lazy loading in React.

    • Lazy loading is especially useful for large applications with many components.

  • Answered by AI
  • Q2. Cache bursting
  • Q3. Difference between == and ===
  • Ans. 

    The difference between == and === is that == checks for equality after type coercion, while === checks for equality without type coercion.

    • == is a loose equality operator that performs type coercion before comparing two values.

    • === is a strict equality operator that does not perform type coercion before comparing two values.

    • Example: 1 == '1' will return true, but 1 === '1' will return false.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of react and redux

Xoxoday Interview FAQs

How many rounds are there in Xoxoday interview?
Xoxoday interview process usually has 2 rounds. The most common rounds in the Xoxoday interview process are One-on-one Round, Resume Shortlist and Assignment.
How to prepare for Xoxoday 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 Xoxoday. The most common topics and skills that interviewers at Xoxoday expect are customer support, Product Marketing, CRM, SAAS and Backend.
What are the top questions asked in Xoxoday interview?

Some of the top questions asked at the Xoxoday interview -

  1. CTC discussion, relocation assistance, othe...read more
  2. Applied marketing questi...read more
  3. Functional testing questi...read more

Tell us how to improve this page.

Xoxoday Interview Process

based on 6 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

HALODOC Interview Questions
2.7
 • 12 Interviews
Unstop Interview Questions
4.0
 • 10 Interviews
Pagarbook Interview Questions
3.6
 • 10 Interviews
ITILITE Interview Questions
2.8
 • 9 Interviews
SalesHandy Interview Questions
3.4
 • 6 Interviews
View all

Xoxoday Reviews and Ratings

based on 106 reviews

3.7/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.6

Salary

3.3

Job security

3.4

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 106 Reviews and Ratings
SDR US Shift

Bangalore / Bengaluru

1-4 Yrs

Not Disclosed

Product Manager

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

SMB Sales Head-US

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
Software Developer
30 salaries
unlock blur

₹8 L/yr - ₹26.5 L/yr

Product Manager
23 salaries
unlock blur

₹11 L/yr - ₹30 L/yr

Key Account Manager
15 salaries
unlock blur

₹7.7 L/yr - ₹17 L/yr

Manager
9 salaries
unlock blur

₹10.9 L/yr - ₹22 L/yr

Front end Developer
8 salaries
unlock blur

₹10 L/yr - ₹11 L/yr

Explore more salaries
Compare Xoxoday with

Pagarbook

3.6
Compare

Signzy Technologies

2.9
Compare

ITILITE

2.8
Compare

Flixstock

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