Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Meesho Team. If you also belong to the team, you can get access from here

Meesho Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Meesho Software Developer Interview Questions, Process, and Tips

Updated 8 Dec 2024

Top Meesho Software Developer Interview Questions and Answers

  • Q1. Array Intersection Problem Statement Given two integer arrays/ lists ARR1 and ARR2 of sizes N and M respectively, you are required to determine their intersection. An in ...read more
  • Q2. Maximum Sum of Two Non-Overlapping Subarrays Given an integer array ARR and a positive integer K , your task is to determine two non-overlapping subarrays of length K th ...read more
  • Q3. Distinct Subsequences Problem Statement You are given a string 'S' of length 'N' which may include duplicate alphabets. Your goal is to calculate the number of distinct ...read more
View all 11 questions

Meesho Software Developer Interview Experiences

12 interviews found

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

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 Moderate questions were asked. I managed to solve 2 completely and 1 partially.

Round 2 - Technical 

(2 Questions)

  • Q1. Question related to system design were asked.
  • Q2. He asked me to design some functions of facebook.
Round 3 - HR 

(1 Question)

  • Q1. Introduction type questions were asked. In this it will prefer only CS students

I was interviewed before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

3 coding questions and 20 mcq's

  • Q1. 

    Maximum Sum of Two Non-Overlapping Subarrays

    Given an integer array ARR and a positive integer K, your task is to determine two non-overlapping subarrays of length K that yield the maximum combined sum.

    ...

  • Ans. 

    The task is to find two non-overlapping subarrays of length K in an array, such that their sum is maximum.

    • Iterate through the array and calculate the sum of each subarray of length K

    • Store the maximum sum obtained from the first subarray

    • Iterate again and calculate the sum of each subarray of length K, excluding the previous subarray

    • Store the maximum sum obtained from the second subarray

    • Return the sum of the two maximum

  • Answered by AI
  • Q2. 

    Distinct Subsequences Problem Statement

    You are given a string 'S' of length 'N' which may include duplicate alphabets. Your goal is to calculate the number of distinct subsequences in the string.

    Exampl...

  • Ans. 

    The task is to find the count of distinct subsequences in a given string.

    • Use dynamic programming to solve the problem.

    • Create a 2D array to store the count of distinct subsequences for each prefix of the string.

    • Initialize the first row of the array with 1, as there is only one subsequence of an empty string.

    • For each character in the string, calculate the count of distinct subsequences by considering two cases: including...

  • Answered by AI
  • Q3. 

    Array Intersection Problem Statement

    Given two integer arrays/ lists ARR1 and ARR2 of sizes N and M respectively, you are required to determine their intersection. An intersection is defined as the set of...

  • Ans. 

    The task is to find the intersection of two integer arrays/lists.

    • Read the number of test cases

    • For each test case, read the size and elements of the first array/list

    • Read the size and elements of the second array/list

    • Find the intersection of the two arrays/lists

    • Print the intersection elements in the order they appear in the first array/list

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

Online video call based round, Timing was 10-11 AM
Interview started with basic greetings, post that i explained by projects in brief and then we jumped right into dsa questoins.

  • Q1. 

    Number of Islands Problem Statement

    You are given a non-empty grid that consists of only 0s and 1s. Your task is to determine the number of islands in this grid.

    An island is defined as a group of 1s (re...

  • Ans. 

    The task is to find the number of islands in a grid consisting of 0s and 1s.

    • An island is a group of 1s connected horizontally, vertically, or diagonally

    • The grid is surrounded by 0s on all four edges

    • Use a depth-first search (DFS) or breadth-first search (BFS) algorithm to traverse the grid and count the number of islands

    • Initialize a visited array to keep track of visited cells

    • For each unvisited cell with a value of 1, p...

  • Answered by AI
  • Q2. 

    Arrangement Problem Statement

    Determine the number of permutations of list A = [1, 2, ..., N] such that for every index i, either A[i] is divisible by i or i is divisible by A[i].

    Input:

    The input start...
  • Ans. 

    The goal is to find the number of permutations of a list satisfying certain conditions.

    • Iterate through all permutations of the list

    • Check if each permutation satisfies the given conditions

    • Count the number of permutations that satisfy the conditions

    • Return the count for each test case

  • Answered by AI
  • Q3. 

    Idempotent Matrix Verification

    Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:

    M * M = M

    Input:

    The first line cont...
  • Ans. 

    An idempotent matrix is a square matrix that remains unchanged when multiplied by itself.

    • Check if the given matrix satisfies the property M*M = M

    • Iterate through each element of the matrix and perform the matrix multiplication

    • Compare the result with the original matrix

    • If they are equal, return true; otherwise, return false

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

This was EM round, started with me explaining my projects in deep and facing some counter questions on that, proceeded to os, dbms basic questions and some low level designing and lastly a puzzle to end interview.

  • Q1. Can you design an attendance management system?
  • Ans. 

    Design attendance management system

    • Create a database to store employee information

    • Implement a user interface for employees to mark their attendance

    • Develop a system to track and record attendance data

    • Generate reports and analytics based on attendance data

  • Answered by AI
Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

This was formality round, HR came and explained what meesho does and told my joining dates and compensation details.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaMeesho interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, DBMS, Dynamic Programming, Low level designTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Do medium level queustions
Tip 2 : Learn basic system design for startup interviews.

Application resume tips for other job seekers

Tip 1 : Put things on your resume that you know by your heart, otherwise will have a lot of difficulty in the HM round.
Tip 2 : Do not mention co-curricular activities on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Contribute & help others!
anonymous
You can choose to be anonymous

Meesho Interview FAQs

How many rounds are there in Meesho Software Developer interview?
Meesho interview process usually has 2 rounds. The most common rounds in the Meesho interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Meesho Software Developer 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 Meesho. The most common topics and skills that interviewers at Meesho expect are Big Data, Distribution System, Java, Python and SCALA.
What are the top questions asked in Meesho Software Developer interview?

Some of the top questions asked at the Meesho Software Developer interview -

  1. Design facebook with functionalities like add post, delete post, follow user, u...read more
  2. how to implement Concurrency in ...read more
  3. Lld of cab booking sys...read more
How long is the Meesho Software Developer interview process?

The duration of Meesho Software Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Meesho

No Interviews

SALARIES

Zessta Software Services

INTERVIEWS

Dzire Trends,

No Interviews

JOBS

Zessta Software Services

No Jobs

SALARIES

Zessta Software Services

SALARIES

Renesas Electronics India

INTERVIEWS

Quest Global

No Interviews

INTERVIEWS

Meesho

No Interviews

SALARIES

Zessta Software Services

SALARIES

Renesas Electronics India

Tell us how to improve this page.

Meesho Software Developer Interview Process

based on 12 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
Meesho Software Developer Salary
based on 27 salaries
₹11 L/yr - ₹37 L/yr
207% more than the average Software Developer Salary in India
View more details

Meesho Software Developer Reviews and Ratings

based on 4 reviews

4.3/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

4.2

Salary

3.6

Job security

3.8

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 4 Reviews and Ratings
Key Account Manager
745 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

City Manager
205 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
190 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
171 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
166 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Meesho with

Amazon

4.1
Compare

Flipkart

4.0
Compare

Myntra

4.0
Compare

GlowRoad

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