Upload Button Icon Add office photos
Premium Employer

i

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

Myntra

Compare button icon Compare button icon Compare

Filter interviews by

Myntra Senior CRM Manager Interview Questions and Answers

Updated 5 Dec 2024

Myntra Senior CRM Manager Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What metrics do you use?
Round 2 - Technical 

(1 Question)

  • Q1. Make a CRM plan for kids category
Round 3 - Technical 

(1 Question)

  • Q1. How would you plan if you want to restart your CRM objectives
Round 4 - HR 

(2 Questions)

  • Q1. What is one of the biggest challenges you've faced
  • Q2. What is your life's biggest achievement

Interview Preparation Tips

Interview preparation tips for other job seekers - There's a final HR interview round., that the company HR doesn't communicate with you. So prepare for that too

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Walk through your professional journey?
  • Ans. 

    I started my career in marketing, then transitioned to project management, and eventually moved into senior leadership roles.

    • Started in marketing role at XYZ Company

    • Transitioned to project management at ABC Company

    • Promoted to senior leadership roles at DEF Company

    • Led cross-functional teams to successful project completion

  • Answered by AI
  • Q2. Why do you want to change?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a new challenge to further develop my skills and knowledge.

    • Interested in exploring new opportunities for career advancement.

    • Seeking a more dynamic work environment to expand my professional horizons.

  • Answered by AI
Round 2 - Case Study 

Case study based on critical thinking, data analysis, decision making etc

Round 3 - Technical 

(2 Questions)

  • Q1. Explain your approach to solve the case study? And various other case study related question
  • Q2. Problem Solving Question
Round 4 - One-on-one 

(3 Questions)

  • Q1. Problem Solving Questions
  • Q2. Case Based Questions
  • Q3. RCA Questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Kanpur and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude only BASIC QUESTIONS

Round 2 - One-on-one 

(2 Questions)

  • Q1. Resume Projects
  • Q2. Resume Position of responsibiloity

Interview Preparation Tips

Topics to prepare for Meesho Senior Associate interview:
  • Root Cause Analysis
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. What is event loop, how it works.
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations like setTimeout, setInterval, and AJAX requests.

    • It works by continuously checking the event queue for any pending events, executing them one by one, and then moving on to the next event.

    • Event loop helps in pre...

  • Answered by AI
  • Q2. Micro task queue and macro task queue.
  • Q3. Is node.js single threaded or multi-threaded, also discuss threadpool and it's usages.
  • Q4. Tell the order of output, among process, promise, setTimeout, fs, setInterval.
  • Ans. 

    The order of output is fs, process, setTimeout, setInterval, promise.

    • fs module is synchronous and will output first

    • process is next in line

    • setTimeout will be executed after process

    • setInterval will be executed after setTimeout

    • promise will be executed last

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. JavaScript usages compiler or interpreter.
  • Ans. 

    JavaScript is an interpreted language.

    • JavaScript is an interpreted language, meaning it is executed line by line at runtime.

    • There is no separate compilation step in JavaScript like in languages that use compilers.

    • Examples of interpreted languages include Python, Ruby, and PHP.

  • Answered by AI
  • Q2. Tell the output among various for loops using var, let and bind.
  • Ans. 

    Output comparison of for loops using var, let, and bind in JavaScript.

    • Using var: variable is function-scoped, may lead to unexpected behavior in loops.

    • Using let: variable is block-scoped, recommended for loop iterations.

    • Using bind: creates a new function with a specified 'this' value and initial arguments.

  • Answered by AI
  • Q3. A medium level dsa question on array, solved it using pre-sum.
  • Q4. Situation based question, on how to pick a suitable database.
Round 3 - Technical 

(4 Questions)

  • Q1. What do you do on daily basis, and how to decide a tech-stack on high level.
  • Ans. 

    I work on coding, debugging, testing, and collaborating with team members. Tech stack decisions are based on project requirements, scalability, performance, and team expertise.

    • Daily tasks include coding, debugging, testing, and collaborating with team members

    • Tech stack decisions are based on project requirements, scalability, performance, and team expertise

    • Consider factors like language compatibility, libraries/framewo...

  • Answered by AI
  • Q2. Design an online scalable, real-time document sharing application like google docs.
  • Ans. 

    Design a scalable, real-time document sharing app like Google Docs.

    • Use websockets for real-time collaboration

    • Implement version control to track changes

    • Utilize a distributed database for scalability

    • Include user authentication and access control

    • Support offline editing with automatic sync

  • Answered by AI
  • Q3. How to handle images also in the future.
  • Ans. 

    Utilize cloud storage for scalability, implement image compression techniques, and regularly update image processing libraries.

    • Utilize cloud storage for scalability

    • Implement image compression techniques

    • Regularly update image processing libraries

  • Answered by AI
  • Q4. Any other way to solve the problem, of high I/O on same document to overcome throughput and conflicts.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Questions were crayon box ,the bot and the game and happy neighbourhood for 90 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Array basics was asked
  • Q2. Segment tree,prefix sum
Round 3 - Technical 

(1 Question)

  • Q1. Low level design was asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell about event loop.
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations.

    • It allows for non-blocking I/O operations by delegating tasks to the operating system.

    • Event loop continuously checks the event queue for any pending events and executes them in a sequential manner.

    • Example: In ...

  • Answered by AI

Skills evaluated in this interview

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

KNOWLEDGE OF INSURANCE SECTOR

Round 2 - HR 

(2 Questions)

  • Q1. WORK EXPERIENCE & CTC
  • Q2. KNOWLEDGE OF GENERAL INSURANCE

Interview Preparation Tips

Interview preparation tips for other job seekers - GO DIGIT INSURANCE FULL OF ONLINE AND BEST WORKING COMPANY FOR GENERAL INSURANCE
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - Assignment 

I have met good experience

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is your qualification?
  • Ans. I am M.A ,B.Ed
  • Answered Anonymously
  • Q2. How many years you have teaching experience?
  • Ans. 24 years teaching experience.
  • Answered Anonymously
  • Q3. Do you want job?
  • Q4. Where do you live?
  • Q5. When will join your job?
  • Ans. İmmediatiely
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - If candidates are giving the good interview then you selected that person.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell about Qualification
  • Q2. Previous company
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Salary certificate
Round 3 - Group Discussion 

Told about how company works, fake company

Round 4 - None 

(2 Questions)

  • Q1. There's None to tell
  • Q2. There None to tell

Interview Preparation Tips

Topics to prepare for Spinny Senior Consultant interview:
  • Previous job
  • nothing
Interview preparation tips for other job seekers - Nothing to share about fake company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

I was asked question on sliding window on finding the largest subarray with all distinct numbers. The interviewer was very helpful.

Myntra Interview FAQs

How many rounds are there in Myntra Senior CRM Manager interview?
Myntra interview process usually has 4 rounds. The most common rounds in the Myntra interview process are Technical and HR.
What are the top questions asked in Myntra Senior CRM Manager interview?

Some of the top questions asked at the Myntra Senior CRM Manager interview -

  1. How would you plan if you want to restart your CRM objecti...read more
  2. What is one of the biggest challenges you've fa...read more
  3. What is your life's biggest achievem...read more

Tell us how to improve this page.

Myntra Senior CRM Manager Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 435 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
Blinkit Interview Questions
3.7
 • 181 Interviews
BlackBuck Interview Questions
3.8
 • 174 Interviews
Spinny Interview Questions
3.7
 • 168 Interviews
FirstCry Interview Questions
3.7
 • 166 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
View all
Data Analyst
208 salaries
unlock blur

₹5 L/yr - ₹19 L/yr

Manager
207 salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Senior Assistant
193 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Senior Officer
184 salaries
unlock blur

₹3 L/yr - ₹7.7 L/yr

Senior Manager
177 salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Explore more salaries
Compare Myntra with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Meesho

3.7
Compare

LimeRoad

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