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 SDE Interview Questions and Answers

Updated 22 Oct 2024

Myntra SDE Interview Experiences

3 interviews found

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

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

asked in Infosys
Q1. Longest Increasing Subsequence Problem Statement Given an array o ... read more
asked in Infosys
Q2. Return Subsets Sum to K Problem Statement Given an integer array ... read more
asked in Nagarro
Q3. Partition to K Equal Sum Subsets Problem Given an array of intege ... read more
asked in Nagarro
Q4. Sort a "K" Sorted Doubly Linked List Given a doubly-linked list w ... read more
asked in Nagarro
Q5. Merge k Sorted Linked Lists You are provided with 'K' sorted link ... read more

SDE Interview Questions & Answers

user image Anonymous

posted on 15 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode medium question

Round 2 - Technical 

(3 Questions)

  • Q1. Technical coding
  • Q2. Java basics questions were asked
  • Q3. Basics of Unix and shell scripting

Interview questions from similar companies

SDE Interview Questions & Answers

Meesho user image Anonymous

posted on 6 Dec 2024

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

(1 Question)

  • Q1. Write system design for cab booking system
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test consist of 50 questions which was simple and mixed if all concepts

Round 2 - Coding Test 

Only one easy coding question

Round 3 - Technical 

(2 Questions)

  • Q1. About Linked List
  • Q2. Basic level understanding questions on DBMS and other concepts
Round 4 - Technical 

(1 Question)

  • Q1. Basic Technical questions

SDE Interview Questions & Answers

Blinkit user image Anonymous

posted on 22 Jun 2024

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

(1 Question)

  • Q1. Predict the winner leetcode problem
  • Ans. 

    The winner leetcode problem involves finding the candidate with the most votes in an election scenario.

    • Iterate through the list of candidates and keep track of their votes

    • Return the candidate with the highest number of votes

    • Example: Input - ['Alice', 'Bob', 'Alice', 'Charlie', 'Bob'], Output - 'Alice'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA

Skills evaluated in this interview

SDE Interview Questions & Answers

Snapdeal user image Anonymous

posted on 23 Feb 2024

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

2 medium level leet code question.

Round 2 - Technical 

(1 Question)

  • Q1. Face to face interview, 2 medium-level dsa questions, some java and OS basic fundamentals.

SDE Interview Questions & Answers

Swiggy user image Anonymous

posted on 22 Jun 2024

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

It had 9 uqestions , one problem solving , one SQL , one API and 6 mcq

Round 2 - Assignment 

Easy assignment , if you hav eOOps knowledge you can do it

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

(1 Question)

  • Q1. System design of Cricbuzz
  • Ans. 

    Cricbuzz system design involves handling real-time sports data, user traffic, and providing live scores, news, and updates.

    • Use microservices architecture to handle different functionalities like live scores, news, and updates.

    • Implement caching mechanisms to reduce load on servers and improve performance.

    • Utilize a distributed database to store large amounts of sports data efficiently.

    • Implement a robust notification syst...

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

LinkedIn user image Anonymous

posted on 25 May 2015

Interview Preparation Tips

Round: Test
Experience: First there was an online round on hackerrank where they asked 4 simple coding questions about DP, strings and stacks. In this round the selected 3 candidates.

Round: TECHNICAL INTERVIEW
Experience: In first round they asked me 2 coding questions where he asked me to code as close as possible to the actual one.

First question was you are given a array of string followed by two words. You have to find the minimum distance between the two words in the given array of string. For example:

(“the”, “quick”, “brown”, “fox”, “quick”)

distance(“fox”,”the”) == 3

distance(“quick”, “fox”) == 1Second qustion:Given two sorted array of Strings, Implement a merged sorted array of stringA[ ] = {"good", "person" }

B[ ] = { "he", "is" }

return { "good", "he", "is", "person"}

After this round they selected all three.

Round: TECHNICAL INTERVIEW
Experience: Then in the second round they asked a little about tree and told me to code 2 codes.

First one : You are supposed to do a level order traversal of a binary tree(not necessarily complete) and have to print a special character(say ‘$’) after completion of each level.

Second: Given a number print all the combination in which no. can be printed.

for eg.Input:

3

Output:

2 1

1 2

1 1 2After this round they selected 2 candidates including me.

General Tips: Tips for the interview:Just be relaxed interview will be simple you just need be calm and do not make small mistakes like ‘;’. Interviewer’s? main focus will be on end cases, so keep all end cases in mind while coding. Before start anything keep clear what you are going to code. Finally think out loud. Best of luck.
College Name: VIT CHENNAI

Myntra Interview FAQs

How many rounds are there in Myntra SDE interview?
Myntra interview process usually has 2-3 rounds. The most common rounds in the Myntra interview process are Technical and Coding Test.
What are the top questions asked in Myntra SDE interview?

Some of the top questions asked at the Myntra SDE interview -

  1. Longest Common Subseque...read more
  2. largest area in histog...read more
  3. operating system, database management sys...read more

Tell us how to improve this page.

Myntra SDE Interview Process

based on 3 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more

SDE Interview Questions from Similar Companies

Amazon SDE Interview Questions
4.1
 • 44 Interviews
Flipkart SDE Interview Questions
4.0
 • 5 Interviews
Meesho SDE Interview Questions
3.7
 • 3 Interviews
Snapdeal SDE Interview Questions
3.8
 • 1 Interview
Swiggy SDE Interview Questions
3.8
 • 1 Interview
Blinkit SDE Interview Questions
3.7
 • 1 Interview
LinkedIn SDE Interview Questions
4.3
 • 1 Interview
View all
Myntra SDE Salary
based on 4 salaries
₹18 L/yr - ₹35 L/yr
20% more than the average SDE Salary in India
View more details
Data Analyst
222 salaries
unlock blur

₹4 L/yr - ₹17.1 L/yr

Manager
208 salaries
unlock blur

₹6 L/yr - ₹24.3 L/yr

Senior Assistant
190 salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Senior Officer
181 salaries
unlock blur

₹3 L/yr - ₹7.7 L/yr

Senior Manager
175 salaries
unlock blur

₹13.8 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