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 Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Myntra Interview Questions and Answers

Updated 3 Jul 2025
Popular Designations

186 Interview questions

A Business Analyst was asked 1w ago
Q. Write a SQL query to analyze month-over-month growth by channel.
Ans. 

SQL query to analyze month-over-month growth by channel, focusing on sales data.

  • Identify the relevant tables: sales, channels, and dates.

  • Use the SUM function to aggregate sales by channel and month.

  • Calculate growth using the formula: (current month sales - previous month sales) / previous month sales.

  • Example SQL query: SELECT channel, MONTH(date) AS month, SUM(sales) AS total_sales FROM sales_data GROUP BY channel...

View all Business Analyst interview questions
A Business Analyst was asked 1w ago
Q. What factors do you analyze when there is a drop in PDP (product detail page)?
Ans. 

Analyzing a drop in PDP involves examining various factors affecting performance and identifying root causes.

  • Review historical data to identify trends and patterns in PDP performance.

  • Analyze customer feedback to understand potential dissatisfaction or issues.

  • Evaluate marketing strategies to see if changes have impacted PDP.

  • Investigate operational changes that may have affected product delivery or quality.

  • Conduct c...

View all Business Analyst interview questions
An External Consultant was asked 2mo ago
Q. What is the process of seller onboarding?
Ans. 

Seller onboarding is the process of integrating new sellers into a platform, ensuring they meet requirements and understand operations.

  • Application Submission: Sellers submit an application with necessary documents, such as business licenses and tax information.

  • Verification Process: The platform verifies the seller's identity and business legitimacy, often requiring background checks.

  • Training and Resources: New sel...

View all External Consultant interview questions
A Principal Assosiate - BI was asked 2mo ago
Q. Write SQL code to find Pareto brands with and without using a join.
Ans. 

Identify Pareto brands using SQL, showcasing both join and non-join methods for analysis.

  • Using JOIN: You can join sales data with brand data to calculate the cumulative sales percentage and identify top brands.

  • Example: SELECT brand, SUM(sales) as total_sales FROM sales JOIN brands ON sales.brand_id = brands.id GROUP BY brand ORDER BY total_sales DESC;

  • Without JOIN: Aggregate sales data directly from a single table ...

A Principal Assosiate - BI was asked 2mo ago
Q. If revenue is down by 10%, how would you address it?
Ans. 

To address a 10% revenue decline, analyze data, identify causes, and implement strategic changes to boost sales and customer engagement.

  • Data Analysis: Examine sales data to identify trends and areas of decline, such as specific products or regions. For example, if a particular product line is underperforming, consider promotions or discounts.

  • Customer Feedback: Gather insights from customers through surveys or inte...

A Computer Operator was asked 2mo ago
Q. What educational qualifications do you have?
Ans. 

A Computer Operator typically requires a high school diploma and proficiency in computer systems and software.

  • High school diploma or equivalent is essential.

  • Familiarity with operating systems like Windows, Linux, or macOS.

  • Basic knowledge of hardware components and troubleshooting.

  • Experience with software applications such as Microsoft Office.

  • Certifications in IT or computer operations can be beneficial.

View all Computer Operator interview questions
A Senior Logistics Assistant was asked 3mo ago
Q. What is your experience with Myntra?
Ans. 

My experience at Myntra involved managing logistics operations, optimizing supply chain processes, and enhancing customer satisfaction.

  • Inventory Management: I oversaw inventory levels, ensuring optimal stock availability to meet customer demand, which reduced stockouts by 20%.

  • Order Fulfillment: I coordinated the order fulfillment process, improving delivery times by implementing a more efficient routing system.

  • Ven...

View all Senior Logistics Assistant interview questions
Are these interview questions helpful?
A Senior Logistics Assistant was asked 3mo ago
Q. How do you handle a team in a hub environment?
Ans. 

Effective team handling in a logistics hub involves communication, organization, and motivation to ensure smooth operations.

  • Establish clear communication channels: Use tools like Slack or Microsoft Teams for real-time updates.

  • Set defined roles and responsibilities: Ensure each team member knows their tasks to avoid confusion.

  • Encourage teamwork: Organize team-building activities to foster collaboration and trust.

  • Mo...

View all Senior Logistics Assistant interview questions
A Senior Logistics Assistant was asked 3mo ago
Q. Tell me about your sales experience.
Ans. 

I am a detail-oriented logistics professional with strong organizational skills and a passion for optimizing supply chain processes.

  • Over 5 years of experience in logistics and supply chain management.

  • Successfully managed inventory levels, reducing excess stock by 20%.

  • Implemented a new tracking system that improved shipment accuracy by 30%.

  • Collaborated with cross-functional teams to streamline operations and enhanc...

View all Senior Logistics Assistant interview questions
An Associate Director was asked 3mo ago
Q. What are the Key Responsibility Areas (KRAs) in Inventory Management?
Ans. 

KRAs in Inventory Management focus on optimizing stock levels, reducing costs, and ensuring product availability.

  • Stock Control: Monitor inventory levels to prevent overstocking or stockouts. For example, using just-in-time (JIT) inventory systems.

  • Demand Forecasting: Analyze sales data to predict future inventory needs, ensuring adequate stock during peak seasons.

  • Supplier Management: Establish strong relationships ...

View all Associate Director interview questions

Myntra Interview Experiences

229 interviews found

Software Developer Interview Questions & Answers

user image Thommandru Vishnu

posted on 10 Mar 2015

Interview Questionnaire 

9 Questions

  • Q1. All the leaf nodes of tree are doubly linked,print only the leaf nodes of a tree
  • Ans. 

    Print only the leaf nodes of a doubly linked tree.

    • Traverse the tree and check if a node has no children and both left and right pointers are null.

    • If yes, then it is a leaf node and print it.

    • If no, then continue traversing the tree.

    • Use recursion to traverse the tree in a depth-first manner.

  • Answered by AI
  • Q2. LRU page Replacement Algorithm for large data
  • Ans. 

    LRU page replacement algorithm is used to replace the least recently used page in memory with a new page.

    • LRU stands for Least Recently Used

    • It is a cache eviction algorithm

    • It is used to manage memory in operating systems

    • It works by keeping track of the pages that are used recently and the ones that are not

    • When a new page is to be loaded into memory, the algorithm checks which page has not been used for the longest time ...

  • Answered by AI
  • Q3. Given a linked list with 2 parameters m,n. Now start reversing the m nodes and leave n nodes and continue it till u reach the end
  • Ans. 

    Reverse m nodes and leave n nodes in a linked list till the end.

    • Traverse the linked list till m nodes and reverse them

    • Traverse n nodes and continue reversing m nodes

    • Repeat the above step till the end of the linked list

    • Handle edge cases like m or n being greater than the length of the linked list

  • Answered by AI
  • Q4. Inorder Traversal of a tree
  • Ans. 

    Inorder traversal is a way of visiting all nodes in a binary tree by visiting the left subtree, then the root, and then the right subtree.

    • Start at the root node

    • Traverse the left subtree recursively

    • Visit the root node

    • Traverse the right subtree recursively

    • Repeat until all nodes have been visited

  • Answered by AI
  • Q5. Inorder Travesal of a tree without recursion(write the code)
  • Ans. 

    Inorder traversal of a tree without recursion

    • Create an empty stack and initialize current node as root

    • Push the current node to stack and set current = current.left until current is NULL

    • If current is NULL and stack is not empty, pop the top item from stack, print it and set current = popped_item.right

    • Repeat step 2 and 3 until stack is empty

  • Answered by AI
  • Q6. Given an array of numbers in which duplicates are there and one triplicate is there. find that number
  • Ans. 

    Find the triplicate number in an array of duplicates.

    • Iterate through the array and keep track of the frequency of each number.

    • Return the number that appears three times.

    • If no number appears three times, return null.

  • Answered by AI
  • Q7. Explain all the serach algorithm you know with space and Time complexities
  • Ans. 

    Explanation of search algorithms with their space and time complexities.

    • Linear Search - O(n) time complexity, O(1) space complexity

    • Binary Search - O(log n) time complexity, O(1) space complexity

    • Jump Search - O(√n) time complexity, O(1) space complexity

    • Interpolation Search - O(log log n) time complexity, O(1) space complexity

    • Exponential Search - O(log n) time complexity, O(1) space complexity

    • Fibonacci Search - O(log n) ...

  • Answered by AI
  • Q8. Given a situation and asks you which search algorithm suits the best in that situation
  • Ans. 

    Choosing the right search algorithm depends on data structure, size, and specific requirements like speed or memory usage.

    • Binary Search: Efficient for sorted arrays, O(log n) time complexity. Example: Finding a number in a sorted list.

    • Linear Search: Simple and works on unsorted arrays, O(n) time complexity. Example: Searching for a name in an unsorted list.

    • Depth-First Search (DFS): Suitable for tree/graph traversal, ex...

  • Answered by AI
  • Q9. Given an array of length n and in which numbers from 1-n will be there and each number can repeat any number of times find out which repeated more number of times
  • Ans. 

    Find the most repeated number in an array of length n with numbers 1-n.

    • Create a dictionary to store the count of each number in the array

    • Iterate through the array and update the count in the dictionary

    • Find the key with the highest count in the dictionary

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Basically, it's not resume shortlist, it's a 9 pointer shortlist

Round: Test
Experience: The Entire Test is held in HackerRank Platform. it has
2 coding questions (one easy and one medium)
2 output questions(medium)
2 Aptitude(easy)
1 general Computer science(medium)
it took me 30 min for each coding questions.I was not known that general question is related to bash commands.
Tips: Practice the Warmup questions in Hacker Rank.
Do some Basic aptitude questions.
Thorough with the basic c and c++ concepts
Duration: 120 minutes
Total Questions: 7

Round: Technical Interview
Experience: It's completely around the data structures. The questions are a bit tricky but once u think without any tension u can get through easily. The interviewer is helpful and gives u few hints if u catch them at the right point of time u got it.There are 2 more questions which I haven't mentioned.
Tips: got through Data Structures and Algorithms Made Easy by Narasimha Karumanchi. It's a best book for the interviews.

Round: Technical Interview
Experience: The interviewer asked to put everything on the blackboard and write down the code of each and everything.
Tips: Go to the website -----/ and study all the interview questions and modules

Round: HR Interview
Experience: It's Technical+ HR interview all the technical questions went around resume. it went around 45 minutes they are very particular about what you wrote in the resume.HR questions are general like
whats your future plans
where will u see yourself in the office after 5 years?
Tips: please make sure that whatever you write in resume should be known to you very well.Don't write false things about yourself.And make sure you know completely about the projects you are going to write in resume(atleast the part you worked)

General Tips: Be sure of what you are saying. Don't be tensed and answer to your best.
Skills: Programming, Data Structures
College Name: VIT VELLORE

Skills evaluated in this interview

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

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 
Round 2 - Aptitude Test 

Aptitude test is a way for employers to assess a candidate's abilities through a variety of different testing formats. Aptitude tests will test your ability to perform tasks and react to situations at work. This includes: problem-solving. prioritisation.5 May 2023

Round 3 - Group Discussion 

Group discussion (GD) is a structured conversation where a group of people discuss a specific topic. GDs are often used in job interviews, academic settings, and business meetings.

Round 4 - Assignment 

Reporter disappeared while on (an) assignment in the war zone.

Round 5 - HR 

(1 Question)

  • Q1. HR stands for Human Resources, which is a department in a company that manages its employees. HR professionals ensure that employees are satisfied, engaged, and have the resources they need to perform well...
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?
  • Ans. 

    Key metrics for a Senior CRM Manager include customer engagement, retention rates, and campaign performance.

    • Customer Lifetime Value (CLV): Measures the total revenue expected from a customer over their relationship with the brand.

    • Customer Retention Rate: Indicates the percentage of customers who continue to engage with the brand over a specific period.

    • Email Open and Click-Through Rates: Assess the effectiveness of emai...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Make a CRM plan for kids category
  • Ans. 

    A CRM plan for the kids category focuses on engagement, retention, and personalized experiences for young customers and their parents.

    • Segment the audience by age groups (e.g., toddlers, preschoolers, school-age) to tailor marketing efforts.

    • Implement a loyalty program that rewards kids for engaging with the brand, such as collecting points for purchases or activities.

    • Create interactive content like games or quizzes that...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. How would you plan if you want to restart your CRM objectives
  • Ans. 

    To restart CRM objectives, I would assess current strategies, gather insights, and align goals with business needs.

    • Conduct a comprehensive audit of existing CRM strategies and performance metrics to identify gaps.

    • Engage with stakeholders to gather insights on customer needs and expectations, ensuring alignment with business objectives.

    • Set clear, measurable goals for the CRM program, such as increasing customer retentio...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What is one of the biggest challenges you've faced
  • Ans. 

    One of my biggest challenges was integrating a new CRM system while ensuring minimal disruption to ongoing campaigns.

    • Faced resistance from team members who were accustomed to the old system.

    • Conducted training sessions to familiarize the team with the new CRM features.

    • Implemented a phased rollout to minimize disruption, starting with a pilot team.

    • Monitored performance metrics closely to address any issues promptly.

    • Achie...

  • Answered by AI
  • Q2. What is your life's biggest achievement
  • Ans. 

    My biggest achievement is leading a successful CRM overhaul that increased customer retention by 30% within a year.

    • Implemented a new CRM system that streamlined customer interactions and data management.

    • Conducted training sessions for the sales and support teams, enhancing their engagement with customers.

    • Developed targeted marketing campaigns based on customer data analysis, resulting in a 25% increase in upsell opport...

  • Answered by AI

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 experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self.
  • Q2. What were your responsibility in your previous organisation?
  • Ans. 

    In my previous organization, I was responsible for managing ad operations, optimizing campaigns, troubleshooting technical issues, and ensuring delivery of digital advertising campaigns.

    • Managed ad operations for various digital advertising campaigns

    • Optimized campaigns to improve performance and ROI

    • Troubleshooted technical issues related to ad serving and tracking

    • Ensured timely and accurate delivery of digital advertisi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are being hired, ensure you understand your fixed and variable pay, and confirm that your work responsibilities are solely yours.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Job Fair and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

OA test 3 Dsa questions 2 medium 1 hard you have to solve 1.5 questions in 120 minutes

Round 2 - One-on-one 

(2 Questions)

  • Q1. DSA Round Astreoid collision leetcode
  • Ans. 

    Asteroid collision problem involves simulating the collision of asteroids moving in a line.

    • Asteroids are represented by integers, where positive values move right and negative values move left.

    • When two asteroids collide, the larger one survives; if they are equal, both are destroyed.

    • Example: [5, 10, -5] results in [5, 10] as -5 collides with 10 and is destroyed.

    • Example: [8, -8] results in [] as both asteroids are equal...

  • Answered by AI
  • Q2. Dp question based on exclusion and inclusion
Round 3 - Coding Test 

DSA 2 question
1 -> Find Lca and traverse a tree path available on GFG
2 -> LinkedList pallindrome check (you have to solve that in 0(1) space complexity)

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

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

Round 1 - Coding Test 

I was hiring drive. First round was coding test with medium to advanced SQL, data modelling and python questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Data model e commerce application
  • Q2. Higest nth rank and lowest rank if no of employees less than 2
  • Ans. 

    If number of employees is less than 2, highest and lowest rank will be the same.

    • If there are less than 2 employees, both highest and lowest rank will be the same.

    • For example, if there is only 1 employee, their rank will be 1 which is both the highest and lowest rank.

  • Answered by AI
  • Q3. Event session data modeling
Round 3 - One-on-one 

(1 Question)

  • Q1. Sql-self join, non equi join, window funtion, consecutive seats, data modeling, stock market maximum profit sql question
Round 4 - One-on-one 

(1 Question)

  • Q1. This was hiring manager round. Detailed discussions on project and previous experience
Round 5 - HR 

(1 Question)

  • Q1. Strength, weakness and why myntra

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Adv SQL, Spark, data modeling, data engineering system design
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. About Sop of Garment Manufacturing to Inspection
  • Q2. Fabric Checking Process 4 Points & Testing Related

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidates Should have Knowledge about Fabric /Printing & Garment Manufacturing & Inspection
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Simple DSA ques. and some mcqs. were easy if you are a cp guy

Round 2 - Technical 

(2 Questions)

  • Q1. Given a string of paranthesis tell longest valid parantheisis
  • Ans. 

    Use stack to keep track of indices of opening parentheses, update max length when closing parentheses found

    • Use a stack to keep track of indices of opening parentheses

    • When a closing parentheses is found, update max length by calculating the difference between current index and top of stack

    • Handle edge cases like extra closing parentheses or unmatched opening parentheses

    • Example: Input: "(()()", Output: 4 (for "()()")

  • Answered by AI
  • Q2. Leetcode 1443. This was exact ques
  • Ans. 

    LeetCode 1443 involves finding the minimum cost to collect apples from trees with given constraints.

    • Understand the problem: You need to collect apples from trees with a cost associated with each tree.

    • Use a greedy approach: Start from the last tree and move towards the first, minimizing costs.

    • Example: If costs are [1, 2, 3] and apples are [2, 3, 1], calculate the total cost based on the path taken.

    • Consider edge cases: W...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Given a string find longest palindromeic substring
  • Ans. 

    Find the longest palindromic substring in a given string.

    • Use dynamic programming to check for palindromes within the string.

    • Start by checking for palindromes of length 1 and 2, then expand to longer substrings.

    • Keep track of the longest palindrome found so far.

  • Answered by AI
  • Q2. Simple take not take dp ques But my interviewer was an idiot she didn't understand shit She was reading editorial on the fly. As i told her approch she was like its wrong then read editorial and was fine. ...

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Online coding test on hacker rank

Round 2 - Technical 

(1 Question)

  • Q1. Normal DSA question related to array & strings
Round 3 - Technical 

(1 Question)

  • Q1. Medium Level DSA questions form Linked list & Aarrays

SDE Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding round has two questions ranging in medium -hard level leetcode questions

Round 2 - Technical 

(3 Questions)

  • Q1. Doubly Linked List
  • Q2. Graph - topological sort
  • Q3. Operating system, database management system
Round 3 - Technical 

(2 Questions)

  • Q1. Longest Common Subsequence
  • Ans. 

    Longest Common Subsequence is the longest sequence of characters that appear in the same order in both strings.

    • Use dynamic programming to solve this problem efficiently.

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

    • Iterate through the strings to fill the array and find the longest common subsequence.

  • Answered by AI
  • Q2. Largest area in histogram
  • Ans. 

    The largest area in a histogram refers to the rectangle with the maximum area that can be formed within the histogram bars.

    • Identify the largest rectangle that can be formed by considering each bar as a potential height and calculating the area based on the width of the rectangle.

    • Use a stack data structure to efficiently find the largest area in a histogram by keeping track of the indices of the bars in non-decreasing o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - make sure to revise sde sheet properly for interviews

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Group discussion, or GD, is used by companies, universities, and other organizations to evaluate a candidate’s soft skills. The GD evaluates a candidate’s skills, such as interaction, time management, authoritativeness, critical thinking, intuition, listening skills, etc.

Round 2 - Technical 

(7 Questions)

  • Q1. What scripting language do you know?
  • Ans. 

    I am proficient in JavaScript, Python, and Ruby scripting languages.

    • JavaScript is commonly used for web development and can be used for both client-side and server-side scripting.

    • Python is known for its simplicity and readability, making it a popular choice for scripting and automation tasks.

    • Ruby is often used for web development and automation, with a focus on developer productivity.

  • Answered by AI
  • Q2. What tools have you used to manage a remote team?
  • Ans. 

    I have used tools like Slack, Zoom, Trello, and Google Docs to manage a remote team effectively.

    • Slack for communication and quick updates

    • Zoom for virtual meetings and video calls

    • Trello for task management and tracking progress

    • Google Docs for collaborative document editing

  • Answered by AI
  • Q3. What programming languages do you know?
  • Ans. 

    I am proficient in Java, Python, and SQL.

    • Java

    • Python

    • SQL

  • Answered by AI
  • Q4. What is your strengths ?
  • Q5. How did you get this interview?
  • Ans. 

    I applied online through the company's website and was contacted for an interview.

    • Applied online through company's website

    • Received a call/email for interview

    • Submitted resume and cover letter

  • Answered by AI
  • Q6. When was this interview?
  • Ans. 

    The interview date is not specified, but it typically occurs after the application process.

    • Interviews are usually scheduled after applications are reviewed.

    • For example, if you applied on January 1st, the interview might be set for January 15th.

    • It's important to confirm the date with the hiring manager or HR.

  • Answered by AI
  • Q7. How difficult was the interview?
  • Ans. 

    The interview was challenging yet fair, with a mix of situational and behavioral questions that tested my customer service skills.

    • The interview included role-playing scenarios, such as handling an irate customer, which required quick thinking.

    • I was asked about my previous experiences in customer service, where I shared a specific instance of resolving a complex issue.

    • Questions about teamwork and communication were prom...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Myntra Customer Care Executive interview:
  • Your carrer goal
Interview preparation tips for other job seekers - We have enable a hybrid work model,which provides mobility support to employees coming to the office Asa well as flexi work options to these who want to work from home.

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Myntra?
Ask anonymously on communities.

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, Merchandising and Data Analysis.
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. Design a website where after user request. A bunch of processes need to be exec...read more
What are the most common questions asked in Myntra HR round?

The most common HR questions asked in Myntra interview are -

  1. What are your salary expectatio...read more
  2. What is your family backgrou...read more
  3. Why are you looking for a chan...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.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 203 interview experiences

Difficulty level

Easy 28%
Moderate 68%
Hard 4%

Duration

Less than 2 weeks 75%
2-4 weeks 17%
4-6 weeks 4%
6-8 weeks 4%
More than 8 weeks 1%
View more
Join Myntra Be The Trend. Be Myntra.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 473 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 230 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
FirstCry Interview Questions
3.6
 • 187 Interviews
Tata 1mg Interview Questions
3.6
 • 186 Interviews
Spinny Interview Questions
3.7
 • 184 Interviews
Digit Insurance Interview Questions
3.8
 • 158 Interviews
View all

Myntra Reviews and Ratings

based on 2k reviews

3.9/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.6

Salary

3.6

Job security

3.9

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 2k Reviews and Ratings
Lead Associate - Buying

Bangalore / Bengaluru

6-8 Yrs

Not Disclosed

Phoenix Intern - Ads Monetization

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

Senior Manager - Social Commerce - Influencer Marketing

Bangalore / Bengaluru

6-10 Yrs

₹ 24-33 LPA

Explore more jobs
Data Analyst
290 salaries
unlock blur

₹7.7 L/yr - ₹14 L/yr

Senior Manager
212 salaries
unlock blur

₹19.3 L/yr - ₹32 L/yr

Manager
209 salaries
unlock blur

₹11 L/yr - ₹18.4 L/yr

Senior Assistant
207 salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Associate
200 salaries
unlock blur

₹6 L/yr - ₹11.8 L/yr

Explore more salaries
Compare Myntra with

Flipkart

3.9
Compare

Amazon

4.0
Compare

Meesho

3.7
Compare

LimeRoad

2.4
Compare
write
Share an Interview