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

Meesho SDE-2 Interview Questions and Answers

Updated 11 Nov 2022

Meesho SDE-2 Interview Experiences

2 interviews found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2022

I appeared for an interview in May 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 - One-on-one 

(1 Question)

  • Q1. Data Structures and Algorithms
Round 3 - Technical 

(1 Question)

  • Q1. Machine Coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong at Data Structures and Algorithms, and good system design knowledge

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 21 May 2022

I appeared for an interview in Jun 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

- It was a face to face (virtually) round.
- Two questions one after one and you are expected to pass all the test cases.
- Question was Easy and Medium Easy. (tags: stack, array, bfs, dfs, array)

- Timing: Afternoon
- Interviewer: he was nice, as I was able to solve both question, he was very happy, and given me the feedback.

  • Q1. 

    Remove Consecutive Duplicates from String

    Given a string STR consisting of both lower and upper case characters, your task is to remove consecutive duplicate characters and return the newly formed string.

    ...
  • Ans. 

    The task is to remove consecutive duplicate characters from a given string and return the new string.

    • Iterate through the characters of the string

    • Compare each character with the next character

    • If they are the same, skip the next character

    • If they are different, append the current character to the new string

  • Answered by AI
  • Q2. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    The task is to find the number of islands present in a 2-dimensional array filled with ones and zeroes.

    • Iterate through each cell in the array

    • If the cell is land (1) and not visited, perform a depth-first search to find all connected land cells

    • Increment the count of islands for each connected component found

  • Answered by AI
Round 2 - Coding Test 

Round duration - 135 minutes
Round difficulty - Medium

Machine Coding.

Timing: Afternoon
The interviewer was answering my questions nicely.

Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Medium

Hiring Manager.
Interviewer: Sr Engineering Manager.
Timing: evening.

The environment was cool.

Interview Preparation Tips

Eligibility criteria7+ CGPAMeesho interview preparation:Topics to prepare for the interview - Data Structures: - Arrays, Stack, Sliding Windows, Two Pointers, BFS, DFS, Dynamic Programming(Medium) OOPS & LLD:- Educative (Grokking the Object-Oriented Programming)- Design Patterns: Refactoring guru- Multithreading - Udemy (Java Multithreading, Concurrency & Performance Optimization)HLD:- Educative: grokking-the-system-design-interview- Book: System Design Interview – An Insider's Guide (Alex Xu)Database:- Relational database: articles blogsTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Stick to one coding platform either do it from geeks for geeks, coding ninja or leetcode. Never jump from one platform to other. Focus on Building the concept rather than solving it.
Tip 2 : Follow the Grooking the Object-Oriented Programming, and try to follow SOLID principle as much as you can. If possible take some MOCK interviews.
Tip 3 : Build your concept on Relational databases, you should be able to design the table structures and relationships.
Tip4: You should aware of your project and your contribution to it. Project Objective should be clear. You should know the tech stack used in project, and reason for choosing it.

Application resume tips for other job seekers

Tip 1 : Don't write too many paragraphs in the project description, It should be pointwise.
Tip 2 : Don't highlight too many skills, like HTML CSS kind of things.
Tip 3 : One page.
Tip 4 : If you are not a fresher, no need to mention school achievements.

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions Asked at Other Companies

asked in Walmart
Q1. Maximum Frequency Number Problem Statement Given an array of inte ... read more
Q2. Reverse String Operations Problem Statement You are provided with ... read more
asked in KhataBook
Q3. Alien Dictionary Problem Statement Ninja is mastering an unusual ... read more
asked in Atlassian
Q4. K Most Frequent Words Problem Statement Given an array of N non-e ... read more
asked in DP World
Q5. Count Ways To Reach The N-th Stair Problem Statement You are give ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

I don't remember the ques

Round 2 - Technical 

(1 Question)

  • Q1. System design of notification system
  • Ans. 

    Design a scalable notification system for sending real-time alerts to users.

    • Use a distributed system to handle high volume of notifications.

    • Implement message queues for asynchronous processing.

    • Utilize push notifications for mobile devices.

    • Include a user preference system for customizing notification settings.

    • Consider implementing a notification history feature for users to view past alerts.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. System design of google pay
  • Ans. 

    Google Pay is a digital wallet platform and online payment system developed by Google.

    • Google Pay uses secure tokenization to protect user's payment information.

    • It integrates with various payment methods like credit/debit cards, UPI, and NFC.

    • The system handles transactions, user authentication, and merchant integrations.

    • Google Pay leverages Google's infrastructure for scalability and reliability.

    • It provides features lik...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Look for interview exp

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

Zepto user image Anonymous

posted on 3 Jul 2024

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

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Minimum cost to connect the ropes
  • Ans. 

    The minimum cost to connect the ropes is calculated by repeatedly connecting the two smallest ropes until all ropes are connected.

    • Sort the ropes in ascending order.

    • Repeatedly connect the two smallest ropes.

    • Add the cost of connecting the two ropes to the total cost.

    • Continue this process until all ropes are connected.

  • Answered by AI
  • Q2. Max value of arr[i]+arr[j]+i-j
  • Ans. 

    The question asks for the maximum value of arr[i]+arr[j]+i-j for given array arr.

    • Iterate through all possible pairs of i and j in the array

    • Calculate the value of arr[i]+arr[j]+i-j for each pair

    • Keep track of the maximum value found

  • Answered by AI

Skills evaluated in this interview

What people are saying about Meesho

View All
subratalodh
Verified Icon
5d
currently not working
BPO Job Hunt
Looking for opportunities in the BPO sector. Good afternoon everyone! From so many months I find wfh jobs in bpo sector like blinkit, zomato, meesho Or in teleperformance etc please help me regarding this in google I couldn't find the hr numbers of this companies so please if anyone have this job Or hiring process is on please send me the he number please and help me regarding this
Got a question about Meesho?
Ask anonymously on communities.

SDE-2 Interview Questions & Answers

Zepto user image Anonymous

posted on 26 Jul 2024

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

(2 Questions)

  • Q1. Map based easy question
  • Q2. Priority based heap question

Sales Executive Interview Questions & Answers

Ninjacart user image Mayur gokul Saner

posted on 10 Sep 2022

I applied via Naukri.com and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic interview questions like brief me about yourself, why sales, why ninjacart...etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm and be confident for sales profiles interview

I appeared for an interview before Sep 2021.

Round 1 - HR 

(1 Question)

  • Q1. Tell me something about your self and your previous organisation?
Round 2 - One-on-one 

(1 Question)

  • Q1. Why you want to join this organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Never say ‚ u left ur previous organisation for growth.
Are these interview questions helpful?

I applied via Walk-in and was interviewed in Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I just shared my previous experience and by interest in sales executive as a organization backup agriculture farmer s life growth and happy to serve in job

Interview Preparation Tips

Interview preparation tips for other job seekers - As I said that to solve problems in sales executive with customer face to face in practical if any problems arise and to calm and to growth of organization as well customer life style changed to technology

I applied via Indeed and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Why organization is anable pay ofpf contribution, company is getting so much facilities from government
  • Q2. Why did Venkatesh join the Udaan do you will come back in Ninja card but I think so

Interview Preparation Tips

Interview preparation tips for other job seekers - There was call by HR Ankita madam while seeing the my resume appoint me As an sales executive.

I appeared for an interview in Nov 2020.

Interview Questionnaire 

1 Question

  • Q1. Mainly about sql, previous job role

Meesho Interview FAQs

How many rounds are there in Meesho SDE-2 interview?
Meesho interview process usually has 3 rounds. The most common rounds in the Meesho interview process are One-on-one Round, Technical and Resume Shortlist.
What are the top questions asked in Meesho SDE-2 interview?

Some of the top questions asked at the Meesho SDE-2 interview -

  1. Machine Coding ro...read more
  2. Data Structures and Algorit...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 465 Interviews
CARS24 Interview Questions
3.5
 • 359 Interviews
Udaan Interview Questions
3.9
 • 346 Interviews
Zepto Interview Questions
3.5
 • 290 Interviews
BlackBuck Interview Questions
3.7
 • 193 Interviews
Tata 1mg Interview Questions
3.6
 • 180 Interviews
Digit Insurance Interview Questions
3.8
 • 158 Interviews
Paisabazaar.com Interview Questions
3.4
 • 152 Interviews
Urban Company Interview Questions
3.4
 • 143 Interviews
Zetwerk Interview Questions
4.0
 • 100 Interviews
View all
Meesho SDE-2 Salary
based on 10 salaries
₹26 L/yr - ₹47 L/yr
6% more than the average SDE-2 Salary in India
View more details

Meesho SDE-2 Reviews and Ratings

based on 7 reviews

4.5/5

Rating in categories

4.5

Skill development

4.1

Work-life balance

4.8

Salary

3.7

Job security

4.5

Company culture

4.1

Promotions

4.5

Work satisfaction

Explore 7 Reviews and Ratings
Key Account Manager
783 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

City Manager
237 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Business Analyst
218 salaries
unlock blur

₹12 L/yr - ₹21.6 L/yr

Senior Business Analyst
171 salaries
unlock blur

₹17 L/yr - ₹28 L/yr

Team Lead
168 salaries
unlock blur

₹3.3 L/yr - ₹7 L/yr

Explore more salaries
Compare Meesho with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Myntra

3.9
Compare

GlowRoad

4.3
Compare
write
Share an Interview