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 Interview Questions, Process, and Tips

Updated 5 Mar 2025

Top Myntra Interview Questions and Answers

View all 158 questions

Myntra Interview Experiences

Popular Designations

214 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find the missing smallest positive integer
  • Ans. 

    Find the missing smallest positive integer in an array of integers

    • Sort the array to easily identify missing integers

    • Iterate through the sorted array to find the smallest missing positive integer

    • Return the missing integer

  • Answered by AI
  • Q2. Given an array of 0,1,2, Sort the array
  • Ans. 

    Sort an array of strings containing only 0, 1, and 2.

    • Use a three-way partitioning algorithm like Dutch National Flag algorithm to sort the array in a single pass.

    • Keep track of three pointers - low, mid, and high to partition the array into three sections.

    • Swap elements based on their values to achieve the sorted array.

  • Answered by AI

Skills evaluated in this interview

Top Myntra Software Engineer Interview Questions and Answers

Q1. print longest substring with k unique values
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - Coding Test 

I was asked questions about a doubly linked list, specifically regarding how to add songs to a playlist and play them from the start, end, or a specified ID. Additionally, I was required to delete a song and report on the total number of times each song was played overall and by each individual.

Top Myntra Software Engineer Interview Questions and Answers

Q1. print longest substring with k unique values
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
Myntra Interview Questions and Answers for Freshers
illustration image

SDE Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2024

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

There was only two coding questions in 50 minutes interview

Round 2 - Technical 

(3 Questions)

  • Q1. One coding question
  • Q2. Only one coding question
  • Q3. Medium level coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA medium level questions

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Breadth of data science, Linear algebra, prob&stats, Lin reg, Log reg, DT, RF
Round 2 - Technical 

(1 Question)

  • Q1. Grilled in Mathematics behind Lin Reg, closed form solution, scalebility of lin reg
Round 3 - One-on-one 

(1 Question)

  • Q1. System design, took a project from my resume and asked me to design the whole solution. Project was a chatbot

Senior Data Scientist Interview Questions asked at other Companies

Q1. What is the difference between logistic and linear regression?
View answer (4)

Myntra interview questions for popular designations

 Software Developer

 (17)

 Software Engineer

 (14)

 Data Analyst

 (14)

 Product Manager

 (5)

 Business Analyst

 (5)

 Associate Category Manager

 (5)

 Quality Analyst

 (3)

 Team Manager

 (3)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Case Study 

Ask for a general question what will you first look at if people are doing add to card but not buying or make payment.

Interview Preparation Tips

Topics to prepare for Myntra Data Analyst interview:
  • SQL
  • Excel
  • Excel formulas
Interview preparation tips for other job seekers - It's inclusive of both case study and skill assessment like SQL and Excel formulas

Top Myntra Data Analyst Interview Questions and Answers

Q1. Create the pivot table, sort the data in ascending order
View answer (5)

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Get interview-ready with Top Myntra Interview Questions

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Excel questions are index match, sumif, countif, vlookup
  • Q2. Sql questions are 2nd highest salary

Top Myntra Data Analyst Interview Questions and Answers

Q1. Create the pivot table, sort the data in ascending order
View answer (5)

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Jobs at Myntra

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Rotate array leetcode question
  • Q2. Longest palindormic substring
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Use dynamic programming to solve this problem efficiently.

    • Iterate through the string and expand around each character to find the longest palindrome.

    • Consider both odd and even length palindromes.

    • Example: Input 'babad', Output 'aba' or 'bab'.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Print all the subsequences of a string
  • Ans. 

    Generate all possible subsequences of a given string.

    • Use recursion to generate all possible combinations of characters in the string.

    • At each step, include or exclude the current character to form subsequences.

    • Store each subsequence in an array of strings.

  • Answered by AI
  • Q2. Print longest substring with k unique values
  • Ans. 

    Find and print the longest substring with k unique characters in an array of strings.

    • Iterate through the array of strings and keep track of the longest substring with k unique characters.

    • Use a sliding window approach to efficiently find the longest substring.

    • Keep a hashmap to store the frequency of characters in the current window.

    • Update the window boundaries based on the number of unique characters.

    • Return the longest

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Behaviour quesions

Skills evaluated in this interview

Top Myntra Software Engineer Interview Questions and Answers

Q1. print longest substring with k unique values
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a dedicated and experienced Customer Support Executive with a strong background in resolving customer issues and providing excellent service.

    • Over 5 years of experience in customer support roles

    • Skilled in resolving customer complaints and issues in a timely manner

    • Excellent communication and problem-solving skills

    • Proficient in using CRM systems and ticketing platforms

    • Received multiple awards for outstanding customer

  • Answered by AI
  • Q2. Tell me the qualities of a good customer support executive?
  • Ans. 

    A good customer support executive should possess excellent communication skills, empathy, patience, problem-solving abilities, and product knowledge.

    • Excellent communication skills - ability to listen actively and convey information clearly

    • Empathy - understanding and relating to customers' emotions and concerns

    • Patience - ability to remain calm and composed in challenging situations

    • Problem-solving abilities - finding sol...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is women empowerment
  • Ans. 

    Women empowerment is the process of enabling women to have control over their lives and make their own decisions.

    • Women empowerment involves promoting gender equality and providing opportunities for women to participate fully in society.

    • It includes ensuring access to education, healthcare, employment, and political representation for women.

    • Empowering women can lead to positive social and economic outcomes for individual...

  • Answered by AI
  • Q2. Tell me something about your city
  • Ans. 

    My city is known for its rich history, diverse culture, and vibrant food scene.

    • Historical landmarks such as the old town square and ancient temples

    • Cultural festivals celebrating traditions from different regions

    • Local markets offering a variety of street food and traditional dishes

  • Answered by AI

Customer Support Executive Interview Questions asked at other Companies

Q1. Understanding customer problems,whT i know about BPO nd how they work,how i will handle a difficult nd angry customer,i can satisfied my client.
View answer (21)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via AmbitionBox

Round 1 - One-on-one 

(2 Questions)

  • Q1. A.Q.L full from
  • Ans. 

    A.Q.L stands for Acceptable Quality Level, which is the maximum percentage of defective units that is considered acceptable during random sampling inspection.

    • AQL is used in quality control to determine the level of quality that is acceptable for a product or process.

    • It is typically expressed as a percentage of defective units in a sample size.

    • For example, if the AQL for a product is 2.5%, it means that no more than 2.5...

  • Answered by AI
  • Q2. Single jeasury fabric use needle no

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard working

Senior Qualityassurance Interview Questions asked at other Companies

Q1. How you are going to control damage and imrove the quality of product ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude test!

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    Experienced Category Manager with a background in retail and a proven track record of driving sales and profitability.

    • Over 5 years of experience in category management

    • Strong analytical skills to identify trends and opportunities

    • Implemented successful strategies to increase sales by 20% in previous role

  • Answered by AI
  • Q2. Talk about relevant experiences
  • Ans. 

    I have over 5 years of experience as a Category Manager in the retail industry.

    • Managed product assortment and pricing strategies

    • Developed strong vendor relationships

    • Implemented successful promotional campaigns

    • Analyzed sales data to optimize category performance

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Take me through your CV
  • Ans. 

    Experienced Category Manager with a background in retail and supply chain management.

    • Started career in retail as a sales associate, quickly moving up to assistant manager

    • Managed inventory and ordering for multiple product categories

    • Implemented successful promotional strategies to increase sales

    • Collaborated with vendors to negotiate pricing and terms

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Cultural question

Category Manager Interview Questions asked at other Companies

Q1. If you are to start a men's grooming category in Gurgaon then how many partners will you start with
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

Myntra Interview FAQs

How many rounds are there in Myntra interview?
Myntra interview process usually has 2-3 rounds. The most common rounds in the Myntra interview process are One-on-one Round, Technical and HR.
How to prepare for Myntra 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 Myntra. The most common topics and skills that interviewers at Myntra expect are Category Management, SQL, Python, Excel and Merchandising.
What are the top questions asked in Myntra interview?

Some of the top questions asked at the Myntra interview -

  1. given an array of length n and in which numbers from 1-n will be there and each...read more
  2. If you had to launch custom made-to-order products, how will you go about it? G...read more
  3. given an array of numbers in which duplicates are there and one triplicate is t...read more
How long is the Myntra interview process?

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

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

REVIEWS

ExcelR

No Reviews

INTERVIEWS

NIIT

No Interviews

JOBS

Apna

No Jobs

INTERVIEWS

NIIT

No Interviews

SALARIES

ExcelR

SALARIES

ExcelR

SALARIES

ExcelR

No Salaries

SALARIES

ExcelR

Tell us how to improve this page.

Myntra Interview Process

based on 188 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 425 Interviews
Udaan Interview Questions
4.0
 • 333 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
AJIO Interview Questions
3.7
 • 64 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
LimeRoad Interview Questions
2.6
 • 9 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
Voonik Interview Questions
2.1
 • 1 Interview
View all

Myntra Reviews and Ratings

based on 1.9k reviews

4.0/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

3.7

Salary

3.7

Job security

4.0

Company culture

3.3

Promotions

3.8

Work satisfaction

Explore 1.9k Reviews and Ratings
Senior Manager - Planning

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Associate - Quality Assurance

Bangalore / Bengaluru

10-12 Yrs

Not Disclosed

Senior Manager - Marketing Insights

Bangalore / Bengaluru

5-7 Yrs

Not Disclosed

Explore more jobs
Data Analyst
209 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
207 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Assistant
193 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Officer
184 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
178 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent