Myntra pvt ltd interview experience Real time questions & tips from candidates to crack your interview

SDE - Intern

Myntra pvt ltd
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 Months
Topics: Data Structure, Algorithms, Trees, Dynamic Programming, Graph
Tip
Tip

Tip 1 : Be prepared for theoretical questions as well
Tip 2 : Prepare for some puzzles as well
Tip 3 : Don't start to code immediately

Application process
Where: Campus
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Make sure your resume is properly aligned and has all the relevant details
Tip 2 : Mention some intern experience that you have

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 minutes
Interview date27 Jul 2021
Coding problem1

It was an online round. 3 very simple coding questions were asked.

1. Pair Sum

Easy
15m average time
90% success
0/40
Asked in companies
Media.netExpedia GroupQuikr

You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair equals 'S'.

Note:

Each pair should be sorted i.e the first value should be less than or equals to the second value. 

Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
Problem approach

Step 1 : Create a map in which you store the array numbers
Step 2 : At every index, check if sum - arr[idx] exists in the map. 
Step 3 : If it does, print the pair

Try solving now
02
Round
Easy
Video Call
Duration60 Minutes
Interview date28 Jul 2021
Coding problem1

It was a face-to-face video interview. The questions asked were relatively easy.

1. 3Sum

Moderate
15m average time
85% success
0/80
Asked in companies
Goldman SachsAdobeAmazon

You are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K.

An array is said to have a triplet {ARR[i], ARR[j], ARR[k]} with sum = 'K' if there exists three indices i, j and k such that i!=j, j!=k and i!=j and ARR[i] + ARR[j] + ARR[k] = 'K'.

Note:
1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
Problem approach

Step 1 - At every index, start a two-sum method on rest of the array with sum = sum - arr[index]
Step 2 - Count all the indexes and print them

Try solving now
03
Round
Hard
Video Call
Duration60 minutes
Interview date28 Jul 2021
Coding problem2

It was related to Competitive questions, resume discussion and core-concepts.

1. Java Question

Why are multiple inheritances not supported in Java?

Problem approach

I found this core Java question really tough to answer because your answer may not satisfy the Interviewer, in most cases Interviewer is looking for specific points and if you can bring them, they would be happy. The key to answering this kind of tough question in Java is to prepare the topic well to accommodate any follow-ups

2. Java Question

Write a Java program to create a deadlock in Java and fix it?

Problem approach

Tip 1 : Prepare for deadlock-related problems, not only theoretically but also practically.
Tip 2 : See practical problems related to Java and core-concepts.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
SDE - Intern
3 rounds | 2 problems
Interviewed by Myntra pvt ltd
4581 views
0 comments
0 upvotes
MERN Stack Developer
3 rounds | 7 problems
Interviewed by Myntra pvt ltd
1559 views
0 comments
0 upvotes
Software Developer
3 rounds | 3 problems
Interviewed by Myntra pvt ltd
2068 views
0 comments
0 upvotes
Software Developer
4 rounds | 5 problems
Interviewed by Myntra pvt ltd
1302 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
15605 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
15499 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
10216 views
2 comments
0 upvotes