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 Software Development Engineer 1 Interview Questions and Answers

Updated 16 Sep 2024

Meesho Software Development Engineer 1 Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

The first round was an online assesment conducted on the hackerrank platform. This round
consisted of 3 DSA Question, 2 Medium and 1 Hard. The duration of the test was 1hr
45mins.

Round 2 - Technical 

(1 Question)

  • Q1. The question was really long, but it was essentially asking us to design a polling system with two actors (CLI only): the user and the administrator. The admin's tasks were to create a poll, delete a pol...
Round 3 - Technical 

(1 Question)

  • Q1. He asked me about the box model in CSS. He expected me to remember some basic Bootstrap and Tailwind classes, as well as the Bootstrap grid system. He was happy with the number of projects I had made and...

Software Development Engineer 1 Jobs at Meesho

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

There were 2 DSA questions.
One was a variation of Kadane's Algorithm and the other one was related to binary trees.

Round 2 - Technical 

(3 Questions)

  • Q1. All CS Fundamentals(OOPS, OS, DBMS, CN)
  • Q2. Find binary tree if preorder and postorder is given.
  • Ans. 

    To find binary tree from preorder and postorder, use recursion and divide the arrays into left and right subtrees.

    • Create a binary tree node using the first element of preorder array

    • Find the root node's index in postorder array

    • Divide the arrays into left and right subtrees recursively

  • Answered by AI
  • Q3. Discussion about the OA questions.
Round 3 - Technical 

(3 Questions)

  • Q1. Projects Discussion and Resume Discussion, some CS questions.
  • Q2. Word Break question from Leetcode.
  • Q3. Some questions on sorting techniques.

Interview Preparation Tips

Topics to prepare for Tata 1mg Software Development Engineer 1 interview:
  • DSA
  • Database Management
  • Operating Systems
  • Object Oriented Programming
  • Computer Networking
Interview preparation tips for other job seekers - Just prepare DSA and CS fundamentals properly. Know each and everything written on your resume.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

2 standard DSA question for 1 hour time

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

I applied via Referral and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

1 hr coding text on hackerearth

Round 2 - Technical 

(1 Question)

  • Q1. Cannot disclose
Round 3 - Behavioral 

(1 Question)

  • Q1. Cannot disclose
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. LRU Cache - how to tackle
  • Ans. 

    LRU Cache is a data structure that maintains a list of items in order of most recently used to least recently used.

    • Implement using a doubly linked list and a hashmap for efficient operations

    • When an item is accessed, move it to the front of the list

    • When the cache is full, remove the least recently used item from the end of the list

  • Answered by AI
  • Q2. LRU Cache implementation based on a real time system. How would the main work which will be called etc etc
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy level to Medium level

Round 2 - Coding Test 

2 Easy questions of DSA

Round 3 - One-on-one 

(2 Questions)

  • Q1. One DSA question
  • Q2. Normal discussion about tech stack
Round 4 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why do you want to join digit?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go easy.. Nothing is hard in digit hiring
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium questions, Questions on DSA and Node.js.

Round 2 - Technical 

(2 Questions)

  • Q1. Valid parenthesis
  • Q2. Three sum problem

Interview Preparation Tips

Topics to prepare for Zetwerk Software Developer interview:
  • js
  • node.js
  • dsa
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Machine coding on Order Management System
  • Q2. Java related advance questions
Round 2 - Technical 

(2 Questions)

  • Q1. Healthy discussion on designing a system
  • Q2. Managerial questions
Round 3 - Culcural Fit 

(2 Questions)

  • Q1. Scenario based questions like How did you handle a situation where your colleague was unresponsive on something
  • Q2. Scenario based questions like What were the positive and constructive feedbacks you got from your manager

Interview Preparation Tips

Topics to prepare for Licious Software Development Engineer II interview:
  • System Design
  • DSA
  • Java
  • Spring Boot
  • SQL
  • Kafka
Interview preparation tips for other job seekers - Just focus on your technical skills along with sound knowledge on system design and good understanding of DSA
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. The question was about Nodejs
  • Q2. The question was to build a linked list in Nodejs
Round 2 - Technical 

(2 Questions)

  • Q1. The first question was related to DSA
  • Q2. The question was related to SQL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(7 Questions)

  • Q1. Angular18 updates`
  • Q2. Angular Ivy features
  • Q3. Dif between var, let, const
  • Ans. 

    var is function scoped, let is block scoped, const is block scoped and cannot be reassigned.

    • var is function scoped, let is block scoped, const is block scoped and cannot be reassigned

    • var can be redeclared and updated, let can be updated but not redeclared, const cannot be redeclared or updated

    • Example: var x = 10; let y = 20; const z = 30;

  • Answered by AI
  • Q4. What is Closure
  • Ans. 

    Closure is a function that captures the variables from its surrounding scope, even after the surrounding function has finished executing.

    • Closure allows a function to access and manipulate variables from its outer scope.

    • It maintains a reference to its outer scope, even after the outer function has returned.

    • Closure is commonly used in event handlers and callbacks.

  • Answered by AI
  • Q5. Dependency injection
  • Q6. Rxjs operators used
  • Ans. 

    Rxjs operators are used for handling asynchronous operations in reactive programming.

    • Map operator: transforms the items emitted by an Observable

    • Filter operator: emits only those items from an Observable that pass a specified condition

    • Merge operator: combines multiple Observables into one by merging their emissions

    • SwitchMap operator: switches to a new Observable each time it is emitted

    • DebounceTime operator: emits a valu...

  • Answered by AI
  • Q7. Change detection strategy in Angular
  • Ans. 

    Change detection strategy in Angular is a mechanism used to detect changes in the application state and update the view accordingly.

    • Angular uses Zone.js for change detection by default

    • Change detection can be triggered manually using ChangeDetectorRef

    • Optimizing change detection using OnPush strategy

  • Answered by AI

Skills evaluated in this interview

Meesho Interview FAQs

How many rounds are there in Meesho Software Development Engineer 1 interview?
Meesho interview process usually has 3 rounds. The most common rounds in the Meesho interview process are Technical and Coding Test.
How to prepare for Meesho Software Development Engineer 1 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 Python, Backend, Medical Coding, Data Structures and Algorithms and Java.

Tell us how to improve this page.

Meesho Software Development Engineer 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 432 Interviews
BigBasket Interview Questions
3.9
 • 355 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
CARS24 Interview Questions
3.6
 • 326 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 179 Interviews
BlackBuck Interview Questions
3.8
 • 173 Interviews
FirstCry Interview Questions
3.7
 • 166 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
View all
Meesho Software Development Engineer 1 Salary
based on 9 salaries
₹17.5 L/yr - ₹23 L/yr
43% more than the average Software Development Engineer 1 Salary in India
View more details

Meesho Software Development Engineer 1 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

1.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Key Account Manager
735 salaries
unlock blur

₹3 L/yr - ₹6.9 L/yr

City Manager
205 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Business Analyst
190 salaries
unlock blur

₹8 L/yr - ₹23 L/yr

Business Development Manager
172 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Team Lead
166 salaries
unlock blur

₹1.6 L/yr - ₹9 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