Skip to content

Meesho Placement Papers 2024 - Previous Year OA Questions & Solutions

Download Meesho placement papers 2024 PDF with previous year online assessment questions, solutions, and exam pattern analysis for 2024 recruitment cycle.

This page contains Meesho placement papers from 2024 with previous year online assessment questions, solutions, and exam patterns.

SectionQuestionsTimeDifficultyFocus Areas
Coding Problems2-360-90 minMedium-HardArrays, trees, graphs, DP

Total: 2-3 problems, 60-90 minutes

Platform: HackerRank or similar
Languages Allowed: Python, Java, JavaScript
Success Rate: ~15-20% cleared OA and advanced to interviews

Meesho Placement Papers 2024 - Actual Questions & Solutions

Section titled “Meesho Placement Papers 2024 - Actual Questions & Solutions”
Q1: Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i].

Example:

Input: nums = [1,2,3,4]
Output: [24,12,8,6]

Solution (Python):

def productExceptSelf(nums):
n = len(nums)
result = [1] * n
# Left pass
for i in range(1, n):
result[i] = result[i-1] * nums[i-1]
# Right pass
right = 1
for i in range(n-1, -1, -1):
result[i] *= right
right *= nums[i]
return result

Time Complexity: O(n)
Space Complexity: O(1) excluding output array

Key Insights from 2024 Meesho Online Assessment

Section titled “Key Insights from 2024 Meesho Online Assessment”
  1. Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
  2. DSA Focus: Strong emphasis on arrays, strings, trees, graphs, and dynamic programming
  3. Time Management: 2-3 problems in 60-90 minutes requires excellent speed and accuracy
  4. E-commerce Focus: Problems often relate to e-commerce systems, product recommendations, social commerce
  5. System Design: Asked for SDE-1/2 roles, e-commerce system design for social commerce roles
  6. Success Rate: Only 15-20% cleared OA and advanced to interviews
  7. Platform: HackerRank or Meesho’s internal platform
  8. Focus Areas: Arrays, trees, graphs, dynamic programming, e-commerce systems, social commerce

Based on candidate experiences from 2024 Meesho interviews:

2024 Interview Process:

  1. Online Assessment (60-90 minutes): 2-3 coding problems
  2. Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, e-commerce concepts
  3. Onsite Interviews (4-5 rounds, 45-60 minutes each):
    • Coding rounds (2-3): Algorithms, data structures, problem-solving
    • System Design rounds: E-commerce platforms, social commerce systems, product recommendations, scalability
    • Behavioral rounds: Problem-solving approach, innovation, impact

Common 2024 Interview Topics:

  • Coding: Arrays, strings, trees, graphs, dynamic programming, e-commerce algorithms
  • System Design: E-commerce platforms, social commerce systems, product recommendations, scalability
  • Behavioral: Problem-solving, innovation, teamwork, impact
  • Meesho Technologies: Social commerce, e-commerce platforms, product recommendations, social sharing

2024 Interview Questions Examples:

  • Product of Array Except Self
  • Design Meesho’s product recommendation system (System Design)
  • Design Meesho’s social commerce platform (System Design)
  • E-commerce and social commerce algorithms

Success Tips:

  • Strong coding performance is essential - solve problems optimally
  • Understand e-commerce and social commerce concepts
  • Practice system design for e-commerce platforms and social commerce systems
  • Prepare examples demonstrating innovation and problem-solving
  • Learn Meesho’s products and social commerce model
  • Practice explaining your thought process clearly

For detailed interview experiences, visit Meesho Interview Experience page.

  1. Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
  2. E-commerce Knowledge: Strong understanding of e-commerce systems, social commerce, product recommendations
  3. Practice Previous Year Papers: Solve Meesho OA papers from 2020-2024 to understand patterns
  4. Time Management: Practice completing 2-3 coding problems in 60-90 minutes
  5. LeetCode Practice: Solve 200+ LeetCode problems focusing on arrays, strings, trees, graphs (medium-hard difficulty)
  6. E-commerce Focus: Practice problems related to e-commerce systems and social commerce
  7. System Design Mastery: Learn e-commerce platform design, social commerce systems, product recommendations
  8. Meesho Technologies: Learn social commerce, e-commerce platforms, product recommendations, social sharing
  9. Behavioral Preparation: Prepare examples using STAR format - innovation, problem-solving, impact
  10. Mock Tests: Take timed practice tests to improve speed and accuracy

Meesho Interview Experience

Real interview experiences from successful candidates

Read Experiences →

Meesho Main Page

Complete Meesho placement guide with eligibility, process, and salary

View Main Page →


Practice 2024 papers to understand Meesho OA pattern and prepare effectively!