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
3.7

based on 1.7k Reviews

Filter interviews by

Meesho Web Developer Interview Questions and Answers

Updated 2 Aug 2024

Meesho Web Developer Interview Experiences

1 interview found

Web Developer Interview Questions & Answers

user image Aditya Arya

posted on 2 Aug 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Machine oding asked to implement LLD
  • Q2. What is a semaphore
  • Ans. 

    A semaphore is a synchronization object used in concurrent programming to control access to shared resources.

    • Semaphores can be used to limit the number of threads accessing a resource at the same time

    • They can be implemented as counting semaphores or binary semaphores

    • Example: In a producer-consumer problem, semaphores can be used to control access to a shared buffer

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to detect and prevent Memory leak
  • Ans. 

    Memory leaks can be detected and prevented by monitoring memory usage, using memory profiling tools, avoiding circular references, and properly managing event listeners.

    • Monitor memory usage regularly to identify any abnormal increases.

    • Use memory profiling tools like Chrome DevTools or Valgrind to analyze memory usage.

    • Avoid creating circular references in your code, as they can prevent objects from being garbage collect...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Advanced JS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study JS indepth
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Question are very tough and faad

Round 2 - Coding Test 

Question like trees linked list and graphs

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck for your future
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2023. There were 4 interview rounds.

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 - Aptitude Test 

Aptitude is generally ask some MCQ choice questions like time, speed, distance etc

Round 3 - Coding Test 

Front end developer have some knowledge in HTML CSS javascript php so ask this language

Round 4 - Group Discussion 

GD is nothing but it's testing our community and quality of thought in your opinion

Interview Preparation Tips

Topics to prepare for Swiggy Front end Web Developer interview:
  • HTML
  • CSS
  • Javascript
  • Bootstrap
Interview preparation tips for other job seekers - No advice is best for job seekers because he/she already depressed so we are motivated them you can achieve soon ☺️
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Max sum path in tree
  • Ans. 

    Find the maximum sum path in a tree from root to leaf node.

    • Start from the root node and traverse down to leaf nodes, keeping track of the sum at each node.

    • At each node, compare the sum of the current path with the maximum sum found so far.

    • Choose the path with the maximum sum as the final result.

  • Answered by AI
  • Q2. Array 2 sum problem
Round 2 - Technical 

(2 Questions)

  • Q1. React: Create a Timer
  • Ans. 

    Create a simple timer using React

    • Use state to store the timer value

    • Use setInterval to update the timer every second

    • Display the timer value in the component's render method

  • Answered by AI
  • Q2. Javascript: implement Debounce
Round 3 - HR 

(2 Questions)

  • Q1. What do you know about the company + common behaviour question
  • Q2. About roles in previous org

Skills evaluated in this interview

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

I was interviewed before May 2023.

Round 1 - Coding Test 

Coding test in javascript

Round 2 - Technical 

(2 Questions)

  • Q1. React js questions
  • Q2. Angular js questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn angular and react js

I was interviewed in Sep 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Mostly focused on Data Structure & Algorithm

  • Q1. 

    Rotate Linked List Problem Statement

    Given a linked list consisting of 'N' nodes and an integer 'K', your task is to rotate the linked list by 'K' positions in a clockwise direction.

    Example:

    Input:
    Li...
  • Ans. Brute Force

    Find the length of the Linked List to check whether the ‘K’ is greater than the Length of the Linked List or not. Take a modulo of ‘K’ with its length if it is greater than the length. Reach the (‘K’+1)th node from last and change the pointers of nodes to get a rotated Linked List.
     

    Here is the algorithm:
     

    1. Base Condition : If ‘HEAD’ is equal to ‘NULL’ or ‘K’ is equal to 0, then return ‘HEAD’ of the L...

  • Answered Anonymously
  • Q2. 

    Reverse Words in a String

    Given a string STR consisting of words separated by spaces, reverse the order of words in STR.

    Note:

    A word is defined as a sequence of non-space characters. Attempt to perform...

  • Ans. Convert to an array of words

    Use an array ‘ARR’ to store the words in ‘STR’. Traverse the string ‘STR’ and append each word at the end of ‘ARR’. Use the string ‘RES’ to store the answer. Traverse the array ‘ARR’ in reverse and append the words in ‘ARR’ to ‘RES’ followed by a whitespace character.

     

    • Create an empty array of string ‘ARR’.
    • Initialize an empty string ‘CUR_STR’. Use it to store a single word from ‘STR’.
    • Run...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 50 Minutes
Round difficulty - Medium

JavaScript core concepts with some examples and problem discussion

Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Shambhunath Institute of Engineering and Technology. I applied for the job as Frontend Developer in BangaloreEligibility criteria0-3 Years of ExperiencePharmEasy interview preparation:Topics to prepare for the interview - CSS Flexbox, HTML Page Rendering, Closures, ThrottlingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : JavaScript from javascript.info and Akshay Saini videos
Tip 2 : Practise CSS styling for big web apps like Amazon, Flipkart etc
Tip 3 : Practice writing custom hooks and react code optimization.

Application resume tips for other job seekers

Tip 1 : Write skills which you know only and be confident about it.
Tip 2 : Also, do mention the project's that you have done in your current company or as a part of your self learning.

Final outcome of the interviewSelected

Skills evaluated in this interview

Meesho Interview FAQs

How many rounds are there in Meesho Web Developer interview?
Meesho interview process usually has 1 rounds. The most common rounds in the Meesho interview process are Technical.
What are the top questions asked in Meesho Web Developer interview?

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

  1. What is a semaph...read more
  2. Machine oding asked to implement ...read more

Tell us how to improve this page.

Meesho Web Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 426 Interviews
BigBasket Interview Questions
3.9
 • 347 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
CARS24 Interview Questions
3.6
 • 321 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 177 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
FirstCry Interview Questions
3.7
 • 163 Interviews
Tata 1mg Interview Questions
3.6
 • 144 Interviews
View all

Meesho Web Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

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

₹3 L/yr - ₹6.9 L/yr

City Manager
205 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Business Analyst
189 salaries
unlock blur

₹8 L/yr - ₹21.5 L/yr

Team Lead
167 salaries
unlock blur

₹1.6 L/yr - ₹9 L/yr

Business Development Manager
165 salaries
unlock blur

₹3 L/yr - ₹7.5 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