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 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Myntra Interview Questions, Process, and Tips for Freshers

Updated 23 Mar 2025

Top Myntra Interview Questions and Answers for Freshers

View all 23 questions

Myntra Interview Experiences for Freshers

Popular Designations

29 interviews found

I applied via Newspaper Ad and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Personal details, Skills Qualifications Experience
  • Ans. My name is Nenavath Mothilal my father's name is N Shankar, I'm from Sangareddy district. I have completed my intrrmiate
  • Answered Anonymously
Round 2 - Case Study 

General knowledge
Stady skill
Basical knowledge

Round 3 - Technical 

(1 Question)

  • Q1. Basic of company related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - My Name is Nenavath Mothilal
I'm from Sangareddy district

Software Programmer Interview Questions asked at other Companies

Q1. In the SQL server diff between delete truncate and drop functions.what is stored procedure and it's advantages.diff between function and stored procedure.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How would you find running sum?
  • Ans. 

    Running sum can be found by iterating through the array and adding each element to the sum of all previous elements.

    • Iterate through the array and add each element to the sum of all previous elements

    • Keep track of the running sum in a separate variable

    • Example: For array [1, 2, 3, 4], running sum would be [1, 3, 6, 10]

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Why is lambda function faster?
  • Ans. 

    Lambda functions are faster due to their ability to execute code without the overhead of defining a function name or structure.

    • Lambda functions do not require a function name, making them quicker to define and execute.

    • They are often used for simple operations or as arguments to higher-order functions.

    • Lambda functions are more concise and can be written in a single line of code.

    • They are particularly useful in functional

  • Answered by AI
Round 3 - Case Study 

How would you increase penetration in tier 2/3 cities

Skills evaluated in this interview

Analytics Manager Interview Questions asked at other Companies

Q1. How do you go about setting up data strategy for a new lending business?
View answer (2)

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Salary expectations and negotiation
  • Q2. Current updates of GST.
  • Ans. 

    GST updates include changes in rates, return filing, and e-invoicing.

    • GST Council has revised rates for various goods and services.

    • New return filing system has been introduced to simplify the process.

    • E-invoicing has been made mandatory for businesses with turnover above Rs. 50 crore.

    • Late fee for non-filing of GSTR-3B has been waived for taxpayers with nil liability.

    • GST revenue collection has been consistently above Rs.

  • Answered by AI
  • Q3. Same as above TDS all are related to job profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Managers are testing your advanced knowledge in GST and taxation.

Senior Executive - Finance Interview Questions asked at other Companies

Q1. What are provisions, contingent liabilities, and contingent assets, and can you provide examples of each?
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 1 Apr 2024

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

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Logical problem solving questions

Round 2 - Technical 

(1 Question)

  • Q1. Resume and recommendation based questions

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Myntra interview questions for popular designations

 Software Developer

 (17)

 Software Engineer

 (15)

 Data Analyst

 (14)

 Product Manager

 (5)

 Business Analyst

 (5)

 Associate Category Manager

 (5)

 Quality Analyst

 (3)

 Team Manager

 (3)

I appeared for an interview in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Given the head node of a singly linked list, return a pointer to the middle node. If there are an odd number of elements, return the middle element. If there are even elements, return the one farther from the head node.

    • Traverse the linked list using two pointers, one moving one node at a time and the other moving two nodes at a time.

    • When the fast pointer reaches the end of the list, the slow pointer will be at the midd...

  • Answered by AI
  • Q2. 

    Huffman Coding Challenge

    Given an array ARR of integers containing 'N' elements where each element denotes the frequency of a character in a message composed of 'N' alphabets of an alien language, your ta...

  • Ans. 

    The task is to find the Huffman codes for each alphabet in an encoded message based on their frequencies.

    • The Huffman code is a binary string that uniquely represents each character in the message.

    • The total number of bits used to represent the message should be minimized.

    • If there are multiple valid Huffman codes, any of them can be printed.

    • The input consists of multiple test cases, each with an array of frequencies.

    • Impl...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    The question asks to find the total amount of rainwater that can be trapped in the given elevation map.

    • Iterate through the array and find the maximum height on the left and right of each bar.

    • Calculate the amount of water that can be trapped at each bar by subtracting its height from the minimum of the maximum heights on the left and right.

    • Sum up the amount of water trapped at each bar to get the total amount of rainwat

  • Answered by AI
  • Q2. 

    Path Reversals Problem Statement

    You are provided with a directed graph and two nodes, 'S' and 'D'. Your objective is to determine the minimum number of edges that need to be reversed to establish a path ...

  • Ans. 

    The task is to find the minimum number of edges that need to be reversed in a directed graph to find the path from a start node to an end node.

    • The problem can be solved using graph traversal algorithms like Breadth First Search (BFS) or Depth First Search (DFS).

    • Start by creating an adjacency list representation of the directed graph.

    • Perform a BFS or DFS from the start node to the end node, keeping track of the number o...

  • Answered by AI
  • Q3. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. 

    The task is to find all distinct triplets in an array that add up to a given sum.

    • Iterate through the array and fix the first element of the triplet.

    • Use two pointers approach to find the other two elements that sum up to the remaining target.

    • Handle duplicates by skipping duplicate elements while iterating.

    • Return the list of valid triplets.

  • Answered by AI
Round 3 - HR 

Round duration - 25 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as MERN Stack Developer in GurgaonEligibility criteriaNo criteriaMyntra interview preparation:Topics to prepare for the interview - DSA, OOPS, React Fundamentals, OS, JavascriptTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Emphasizing on the importance of proficiency in data structures and algorithms for acing the interviews, which is true in any case.
Tip 2 : Do some good projects. (3 projects are more than sufficient)
Tip 3 : Create your resume of only one page.

Application resume tips for other job seekers

Tip 1 : Mention Projects
Tip 2 : Highlight Ranks in Competitive Programming

Final outcome of the interviewSelected

Skills evaluated in this interview

Mern Stack Developer Interview Questions asked at other Companies

Q1. Middle of a Linked List You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list. If there is an odd number of elements, return the middle element. If there are an even ... read more
View answer (1)

Get interview-ready with Top Myntra Interview Questions

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 5 Sep 2022

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 - Technical 

(1 Question)

  • Q1. Write a program on stack operations
  • Ans. 

    A program for stack operations

    • Create a stack using an array or linked list

    • Implement push() and pop() functions

    • Check for stack overflow and underflow

    • Implement peek() function to view top element

    • Example: stack.push(5), stack.pop(), stack.peek()

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have good knowledge on DSA,time complexities

SDE Intern Interview Questions asked at other Companies

Q1. Given a string of containing lower case letters and upper case characters. Find the number of occurrences of each character. The question was further modified to include the special characters as well. I was asked to design the test cases f... read more
View answer (2)

Jobs at Myntra

View all

Worker Interview Questions & Answers

user image Anonymous

posted on 13 Apr 2022

I applied via Company Website and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

It help to discuss each and every thing

Round 2 - Technical 

(1 Question)

  • Q1. Technology is the most helpful thing for every one . technology change our life

Interview Preparation Tips

Topics to prepare for Myntra Worker interview:
  • Customer Service
  • customer support
  • typing
  • Form filling
  • Copy paste
Interview preparation tips for other job seekers - I want 10% salary before i finish my work

Worker Interview Questions asked at other Companies

Q1. What advice would you give to someone preparing for a coding test at Box?
View answer (3)

I applied via Referral and was interviewed in Jun 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 - HR 

(1 Question)

  • Q1. According profile besis questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Improvement for employees growth process in Myntra.com

I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Knowledge on the job profile I applied for, previous projects I did and college assignments.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with previous projects approach and results that you have done. Do a bit of research on the project/job profile/task you have been assigned to, it will be shared with you prior to the interview.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed before Dec 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. Self introduced n little get knowledge abut delivery nothing much
  • Q2. Self introduced n little abut delivery work

Interview Preparation Tips

Interview preparation tips for other job seekers - B proper gromimg n polity..n have prepared abut self introduced

Delivery Executive Interview Questions asked at other Companies

Q1. How u can satisfies a client for is aspects
View answer (2)

Myntra Interview FAQs

How many rounds are there in Myntra interview for freshers?
Myntra interview process for freshers usually has 2-3 rounds. The most common rounds in the Myntra interview process for freshers are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Myntra interview for freshers?
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 E-commerce, Internship, Data Analysis, Internet and Analytical skills.
What are the top questions asked in Myntra interview for freshers?

Some of the top questions asked at the Myntra interview for freshers -

  1. U have to cut a rod in such a way so that u can get each part ever day and whol...read more
  2. How u can satisfies a client for is aspe...read more
  3. Higest nth rank and lowest rank if no of employees less tha...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.

Myntra Interview Process for Freshers

based on 13 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 434 Interviews
Udaan Interview Questions
3.9
 • 336 Interviews
Meesho Interview Questions
3.7
 • 335 Interviews
Blinkit Interview Questions
3.7
 • 194 Interviews
BlackBuck Interview Questions
3.8
 • 180 Interviews
FirstCry Interview Questions
3.6
 • 172 Interviews
Spinny Interview Questions
3.7
 • 171 Interviews
Tata 1mg Interview Questions
3.6
 • 153 Interviews
Digit Insurance Interview Questions
3.9
 • 146 Interviews
Paisabazaar.com Interview Questions
3.4
 • 142 Interviews
View all

Myntra Reviews and Ratings

based on 2k 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 2k Reviews and Ratings
Data Analyst
260 salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Manager
207 salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Senior Manager
188 salaries
unlock blur

₹13.2 L/yr - ₹35.5 L/yr

Senior Assistant
184 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Associate
183 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Explore more salaries
Compare Myntra with

Flipkart

3.9
Compare

Amazon

4.0
Compare

Meesho

3.7
Compare

LimeRoad

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