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 Business Analyst Interview Questions and Answers

Updated 8 Jan 2025

22 Interview questions

A Business Analyst was asked
Q. Describe the different types of joins.
Ans. 

Different types of joins are used in database queries to combine data from multiple tables.

  • Inner join: Returns only the matching records from both tables.

  • Left join: Returns all records from the left table and the matching records from the right table.

  • Right join: Returns all records from the right table and the matching records from the left table.

  • Full outer join: Returns all records when there is a match in either...

A Business Analyst was asked
Q. Strategy for marketing for new product launch
Ans. 

Utilize a mix of digital and traditional marketing strategies to create buzz and reach target audience effectively.

  • Conduct market research to understand target audience and competition

  • Develop a comprehensive marketing plan including online advertising, social media campaigns, PR efforts, and events

  • Utilize influencers and brand ambassadors to generate excitement and credibility

  • Offer exclusive promotions or discount...

Business Analyst Interview Questions Asked at Other Companies

asked in Evalueserve
Q1. You have 10 boxes of balls (each ball weighing exactly 10 gm) wit ... read more
Q2. There are 100 people standing in a circle, the first person has a ... read more
asked in EXL Service
Q3. Doors numbered 1 to 100 are initially closed. In the first step, ... read more
asked in Infosys
Q4. What is your strong point in terms of technical knowledge? Like J ... read more
asked in EXL Service
Q5. If you have 333 digits to number the pages of a book, how many pa ... read more

Meesho Business Analyst Interview Experiences

43 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It was based on 4 sql questions of medium to hard level and 24 mcqs based on sql,aptitude,excel.

Round 2 - Technical 

(1 Question)

  • Q1. They give you some questions and you have to write sql queries for them
  • Ans. 

    SQL queries are essential for extracting and manipulating data in databases, crucial for business analysis.

    • Understand the database schema before writing queries.

    • Use SELECT statements to retrieve data, e.g., SELECT * FROM employees;

    • Utilize WHERE clauses to filter results, e.g., SELECT * FROM sales WHERE amount > 1000;

    • Join tables to combine related data, e.g., SELECT a.name, b.salary FROM employees a JOIN salaries b O...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. You are given case study and come sql questions based on that
  • Ans. 

    SQL questions based on a case study assess analytical skills and data handling capabilities.

    • Understand the case study context and objectives.

    • Identify key data entities and relationships.

    • Formulate SQL queries to extract relevant insights.

    • Example: Use JOINs to combine data from multiple tables.

    • Consider performance optimization for complex queries.

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

45 minutes coding test

Round 2 - Technical 

(1 Question)

  • Q1. 2 nd round was technical.
Round 3 - Technical 

(1 Question)

  • Q1. Third round was technical
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

SQL and aptitude were asked in this round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of SQL Concepts
  • Q2. Basics of DBMS Concepts
Round 3 - One-on-one 

(2 Questions)

  • Q1. Regarding the projects in Resume
  • Q2. About SQL Window Functions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics regarding SQL and DBMS is crucial

What are the roles & responsibilities of a Business Analyst at Meesho?

Data Analysis

  • Conduct analysis and solution-building based on insights captured from data
  • Analyze metrics and key indicators to discover root causes of process defects

Read full roles & responsibilities

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 Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 question on hacker rank in which 4 questions were related to sql and rest were basic aptitude questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Find order of execution
  • Ans. 

    The order of execution refers to the sequence in which tasks or processes are carried out.

    • Identify the tasks or processes that need to be executed

    • Determine the dependencies between tasks

    • Execute tasks in the correct order based on dependencies

    • Ensure that tasks are completed before moving on to the next task

  • Answered by AI
  • Q2. What is the output after joining two tables.
Round 3 - HR 

(2 Questions)

  • Q1. More about resume based questions
  • Q2. Asked some puzzle questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The process was streamlined and interviewers were friendly so it was a nice experience.

Skills evaluated in this interview

Meesho HR Interview Questions

75 questions and answers

Q. What do you know about this company?
Q. What can you do in the next year?
Q. What can you do for us?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Hackerank test based on sql with one hard question

Round 2 - One-on-one 

(4 Questions)

  • Q1. Questions of window functions
  • Q2. Question about rank
  • Q3. Question about joins
  • Q4. Question about coding sql functions
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly Advance SQL question on some random cases
  • Q2. Some advance SQL theory questions

Interview Preparation Tips

Interview preparation tips for other job seekers - First they will ask about introduction and then directly move to the Technical round.
my experience was not good.
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 Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Sql questions and excel questions

Round 2 - Technical 

(2 Questions)

  • Q1. Sql question was asked to find the nth value
  • Q2. Sql question based on rank and dense rank
  • Ans. 

    Understanding SQL RANK and DENSE_RANK functions for data ranking.

    • RANK() assigns a unique rank to each distinct row, with gaps for ties. Example: 1, 2, 2, 4.

    • DENSE_RANK() also assigns ranks but without gaps for ties. Example: 1, 2, 2, 3.

    • Use RANK() when you want to reflect the actual position with gaps in ranking.

    • Use DENSE_RANK() when you want a continuous ranking without gaps.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why is meesho suitable for u
  • Q2. What are the strength and weaknesses

Interview Preparation Tips

Topics to prepare for Meesho Business Analyst interview:
  • sql
  • Excel
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Online assessment - Sql basic syntax related questions + SQL queries for 4 problems + some aptitude ques

Round 2 - One-on-one 

(2 Questions)

  • Q1. Window function related question asked
  • Q2. Then some basic questions like difference between union and union all

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare window function is very imp for one on one rounds
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 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find no of employees inside the office at current time?
  • Ans. 

    To find the number of employees inside the office at the current time.

    • Check the attendance records or sign-in logs

    • Count the number of occupied desks or workstations

    • Use access control data to track entries and exits

    • Ask the receptionist or security personnel for a headcount

  • Answered by AI
  • Q2. Measure amount of time spent by each employee inside the office
  • Ans. 

    Employee time tracking system can be used to measure time spent in the office.

    • Implement an employee time tracking system to record entry and exit times

    • Use access card swipes or biometric systems for accurate tracking

    • Generate reports to analyze time spent by each employee

    • Consider implementing software solutions like time tracking apps for remote employees

  • Answered by AI
Round 2 - Case Study 

Find the root cause for 20% decline in users browsing Meesho within a week

Business Analyst Interview Questions & Answers

user image Shweta Chauhan

posted on 21 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Output of joins
  • Ans. 

    Output of joins is a combination of data from two or more tables based on a common column.

    • Joins are used to combine rows from two or more tables based on a related column between them

    • Types of joins include inner join, outer join, left join, and right join

    • The output of a join will include columns from both tables, with rows that meet the join condition

  • Answered by AI
  • Q2. Rank dense rank cte
  • Ans. 

    Rank, Dense Rank, and CTE are SQL functions for ordering and ranking data in queries.

    • RANK() assigns a unique rank to each row within a partition, with gaps for ties. Example: RANK() OVER (ORDER BY score).

    • DENSE_RANK() also ranks rows but does not leave gaps for ties. Example: DENSE_RANK() OVER (ORDER BY score).

    • Common Table Expressions (CTEs) allow for temporary result sets that can be referenced within a SELECT, INSERT,...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Meesho?
Ask anonymously on communities.

Meesho Interview FAQs

How many rounds are there in Meesho Business Analyst interview?
Meesho interview process usually has 2-3 rounds. The most common rounds in the Meesho interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Meesho Business Analyst 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 SQL, Business Analysis, Python, Statistics and Strategic Planning.
What are the top questions asked in Meesho Business Analyst interview?

Some of the top questions asked at the Meesho Business Analyst interview -

  1. A SQL based puzzle based on window functions where I had to find 4 consecutive ...read more
  2. 2 tables were given and I was asked to tell the number of rows in output based ...read more
  3. Describe different types of jo...read more
How long is the Meesho Business Analyst interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 42 interview experiences

Difficulty level

Moderate 93%
Hard 7%

Duration

Less than 2 weeks 81%
2-4 weeks 19%
View more
Meesho Business Analyst Salary
based on 226 salaries
₹12 L/yr - ₹21 L/yr
52% more than the average Business Analyst Salary in India
View more details

Meesho Business Analyst Reviews and Ratings

based on 33 reviews

3.5/5

Rating in categories

3.6

Skill development

3.2

Work-life balance

4.0

Salary

3.2

Job security

3.6

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 33 Reviews and Ratings
Key Account Manager
798 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

City Manager
237 salaries
unlock blur

₹4.9 L/yr - ₹10 L/yr

Business Analyst
205 salaries
unlock blur

₹13 L/yr - ₹22.3 L/yr

Area Manager
179 salaries
unlock blur

₹3.6 L/yr - ₹7.3 L/yr

Team Lead
177 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Explore more salaries
Compare Meesho with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Myntra

3.9
Compare

GlowRoad

4.4
Compare
write
Share an Interview