i
Myntra
Work with us
Filter interviews by
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 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.
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...
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...
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...
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 ...
Effective management of sell-through rates and OTB plans ensures optimal inventory levels and maximizes sales potential.
Analyze historical sales data to forecast demand and set realistic sell-through targets.
Regularly review inventory levels and sales performance to adjust OTB plans accordingly.
Implement a collaborative approach with merchandising and marketing teams to align on promotions that drive sell-through.
...
Allocating budget effectively across the marketing funnel enhances customer engagement and conversion rates.
Awareness (30%): Invest in social media ads and SEO to increase brand visibility. Example: Facebook ads targeting specific demographics.
Consideration (25%): Use content marketing and webinars to educate potential customers. Example: Hosting a webinar on product benefits.
Conversion (20%): Allocate funds for p...
Building rapport with managers fosters collaboration and enhances team dynamics, leading to improved performance and job satisfaction.
Schedule regular one-on-one meetings to discuss goals and expectations.
Participate in team-building activities to strengthen relationships.
Seek feedback on your work to show openness and willingness to improve.
Share personal interests to find common ground and build rapport.
Be proac...
The candy problem involves distributing candies to children based on their ratings while ensuring fairness.
Each child must receive at least one candy.
Children with a higher rating than their neighbors receive more candies.
Example: Ratings [1, 0, 2] results in candies [2, 1, 2].
Use a two-pass algorithm: one from left to right, and another from right to left.
I appeared for an interview in Dec 2024.
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
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.
Reporter disappeared while on (an) assignment in the war zone.
I applied via Approached by Company and was interviewed in Nov 2024. There were 4 interview rounds.
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...
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...
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...
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...
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...
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...
I applied via Job Fair and was interviewed in Dec 2024. There were 3 interview rounds.
OA test 3 Dsa questions 2 medium 1 hard you have to solve 1.5 questions in 120 minutes
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...
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)
I applied via Approached by Company and was interviewed in Aug 2024. There were 5 interview rounds.
I was hiring drive. First round was coding test with medium to advanced SQL, data modelling and python questions
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.
I appeared for an interview in Dec 2024.
I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.
Simple DSA ques. and some mcqs. were easy if you are a cp guy
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 "()()")
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...
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.
I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.
Online coding test on hacker rank
Coding round has two questions ranging in medium -hard level leetcode questions
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.
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...
Top trending discussions
Some of the top questions asked at the Myntra interview -
The duration of Myntra interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 202 interview experiences
Difficulty level
Duration
Data Analyst
284
salaries
| ₹6 L/yr - ₹14 L/yr |
Senior Manager
213
salaries
| ₹19.2 L/yr - ₹32 L/yr |
Manager
209
salaries
| ₹11 L/yr - ₹18.4 L/yr |
Associate
207
salaries
| ₹3 L/yr - ₹12.4 L/yr |
Senior Assistant
206
salaries
| ₹1.4 L/yr - ₹5.3 L/yr |
Flipkart
Amazon
Meesho
LimeRoad