Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Merilytics Team. If you also belong to the team, you can get access from here

Merilytics Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Merilytics Interview Questions and Answers

Updated 2 Jul 2025
Popular Designations

25 Interview questions

A Data Engineer was asked 7mo ago
Q. Given a string containing only numbers, remove all zeros and insert them at the end of the string while maintaining the relative order of the other digits.
Ans. 

Remove zeroes from a numbers only string and insert at last while maintaining relative order.

  • Iterate through the string and separate numbers and zeroes

  • Store numbers in an array and zeroes in a separate array

  • Concatenate the numbers array with the zeroes array at the end

View all Data Engineer interview questions
A Data Engineer was asked 7mo ago
Q. Explain different types of joins with examples.
Ans. 

Understanding SQL joins is crucial for combining data from multiple tables effectively.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

  • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

  • RIGHT JOIN: Returns all records from the right table and matched re...

View all Data Engineer interview questions
A Data Engineer was asked 7mo ago
Q. A frog is crossing a river. The river is divided into some number of units, and at each unit, there may or may not exist a stone. The frog can jump on a stone, but it must not jump into the water. Given a l...
Ans. 

The Frog Jump problem involves calculating the minimum cost to reach the last stone using dynamic programming.

  • Define the problem: A frog can jump 1 or 2 stones at a time, and each stone has a cost.

  • Use dynamic programming to store the minimum cost to reach each stone.

  • Base cases: Cost to reach the first stone is 0, and the cost to reach the second stone is the cost of the second stone.

  • Recurrence relation: Cost[i] = ...

View all Data Engineer interview questions
A Business Development Manager was asked 12mo ago
Q. In a case study on marketing campaigns, what KPIs/metrics should be tracked to measure performance?
Ans. 

Key performance indicators (KPIs) are essential for evaluating marketing campaign success and guiding future strategies.

  • Conversion Rate: Measures the percentage of users who take a desired action, e.g., signing up for a newsletter.

  • Customer Acquisition Cost (CAC): Total cost of acquiring a new customer, e.g., total marketing spend divided by new customers gained.

  • Return on Investment (ROI): Evaluates the profitabili...

View all Business Development Manager interview questions
A Business Development Manager was asked 12mo ago
Q. Given data around the change in monthly orders from 3 different campaigns, how would you determine which campaign was most efficient?
Ans. 

Analyze monthly order changes to determine the most efficient campaign among three options.

  • Compare the percentage increase in orders for each campaign. For example, if Campaign A had a 30% increase, Campaign B had 20%, and Campaign C had 50%, Campaign C is the most efficient.

  • Evaluate the cost per order for each campaign. If Campaign A spent $1000 for 100 orders ($10/order), while Campaign B spent $800 for 50 order...

View all Business Development Manager interview questions
A Business Development Manager was asked 12mo ago
Q. Given data around changes in customer spending and the cost of each campaign, how would you determine which campaign onboarded the best-spending customers?
Ans. 

Analyze customer spending data to identify the most effective campaign for onboarding high-spending customers.

  • Collect data on customer spending before and after each campaign.

  • Calculate the cost per acquisition (CPA) for each campaign to assess efficiency.

  • Identify the average spending of customers acquired through each campaign.

  • Compare the average spending of customers from different campaigns to find the best perf...

View all Business Development Manager interview questions
A Snowflake Developer was asked 12mo ago
Q. What is Snowpipe?
Ans. 

Snowpipe is a continuous data ingestion service provided by Snowflake for loading streaming data into tables.

  • Snowpipe allows for real-time data loading without the need for manual intervention.

  • It can load data from various sources such as Amazon S3, Azure Blob Storage, and Google Cloud Storage.

  • Snowpipe uses a queue-based architecture to process data as soon as it arrives.

View all Snowflake Developer interview questions
Are these interview questions helpful?
A Data Engineer 1 was asked 12mo ago
Q. Which is your favorite programming language?
Ans. 

My favorite programming language is Python because of its readability, versatility, and extensive libraries.

  • Python is known for its readability, making it easier to write and maintain code.

  • Python is versatile and can be used for web development, data analysis, machine learning, and more.

  • Python has a vast collection of libraries like NumPy, Pandas, and Matplotlib that make data manipulation and visualization easier...

View all Data Engineer 1 interview questions
A Data Engineer 1 was asked 12mo ago
Q. What is the difference between a left join and a right join?
Ans. 

Left join returns all records from the left table and the matched records from the right table, while right join returns all records from the right table and the matched records from the left table.

  • Left join keeps all records from the left table, even if there are no matches in the right table.

  • Right join keeps all records from the right table, even if there are no matches in the left table.

  • Example: If we have a ta...

View all Data Engineer 1 interview questions
A Data Engineer 1 was asked 12mo ago
Q. What are SQL commands?
Ans. 

SQL commands are instructions used to interact with databases to perform tasks such as querying, updating, and managing data.

  • SQL commands are used to perform various operations on databases, such as SELECT, INSERT, UPDATE, DELETE.

  • Examples of SQL commands include SELECT * FROM table_name, INSERT INTO table_name (column1, column2) VALUES (value1, value2), UPDATE table_name SET column1 = value1 WHERE condition, DELET...

View all Data Engineer 1 interview questions

Merilytics Interview Experiences

51 interviews found

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

I appeared for an interview in Jan 2025, where I was asked the following questions.

  • Q1. Case study regarding revenue growth
  • Q2. Case study regarding upscaling of brand gross margins

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Nov 2024

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

I applied via Campus Placement

Round 1 - Aptitude Test 

First round Aptitude + Technical questions on CS fundamentals

Round 2 - Technical 

(3 Questions)

  • Q1. Frog jump Dynamic programming question
  • Ans. 

    The Frog Jump problem involves calculating the minimum cost to reach the last stone using dynamic programming.

    • Define the problem: A frog can jump 1 or 2 stones at a time, and each stone has a cost.

    • Use dynamic programming to store the minimum cost to reach each stone.

    • Base cases: Cost to reach the first stone is 0, and the cost to reach the second stone is the cost of the second stone.

    • Recurrence relation: Cost[i] = min(C...

  • Answered by AI
  • Q2. Remove zeroes from a numbers only string and insert at last also maintain the relative order
  • Ans. 

    Remove zeroes from a numbers only string and insert at last while maintaining relative order.

    • Iterate through the string and separate numbers and zeroes

    • Store numbers in an array and zeroes in a separate array

    • Concatenate the numbers array with the zeroes array at the end

  • Answered by AI
  • Q3. One sql question on joins
  • Ans. 

    Understanding SQL joins is crucial for combining data from multiple tables effectively.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

    • RIGHT JOIN: Returns all records from the right table and matched records...

  • Answered by AI

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

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

Round 1 - Aptitude Test 

15 mcqs aptitude for 15 min, then section closes, then 15 coding mcqs based on oops, java, python,dsa and very few about sql.

Round 2 - HR 

(1 Question)

  • Q1. Asked about what projects i did , and asked me to explain briefly about them , Asked if i would be given an offer , would it be final, or even then would you be applying for jobs for other companies. Aske...
Round 3 - Technical 

(1 Question)

  • Q1. Few questions about python , gave me a string "abc-def-ghi" and asked me to split it into substrings and return the substrings, asked about lists, tuples, dictionaries, differences and comparison between t...

Interview Preparation Tips

Interview preparation tips for other job seekers - do revise basics of sql, not just writing queries, but each and every keyword in sql, what does it do in theory, be thorough with all theoretical concepts like joins, ddl dml commands,
for writing complex queries, SQL 50 on leetcode would suffice, also learn window functions properly and their implementation in queries.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Case study on marketing campaigns. What should be the KPIs/metrics to track the performance of these campaigns?
  • Ans. 

    Key performance indicators (KPIs) are essential for evaluating marketing campaign success and guiding future strategies.

    • Conversion Rate: Measures the percentage of users who take a desired action, e.g., signing up for a newsletter.

    • Customer Acquisition Cost (CAC): Total cost of acquiring a new customer, e.g., total marketing spend divided by new customers gained.

    • Return on Investment (ROI): Evaluates the profitability of...

  • Answered by AI
  • Q2. Given data around the change in monthly orders from 3 different campaigns, find out which campaign was most efficient.
  • Ans. 

    Analyze monthly order changes to determine the most efficient campaign among three options.

    • Compare the percentage increase in orders for each campaign. For example, if Campaign A had a 30% increase, Campaign B had 20%, and Campaign C had 50%, Campaign C is the most efficient.

    • Evaluate the cost per order for each campaign. If Campaign A spent $1000 for 100 orders ($10/order), while Campaign B spent $800 for 50 orders ($1...

  • Answered by AI
  • Q3. Given data around change in customer spending and cost of each campaign, find out which campaign ended up onboarding best spending customers.
  • Ans. 

    Analyze customer spending data to identify the most effective campaign for onboarding high-spending customers.

    • Collect data on customer spending before and after each campaign.

    • Calculate the cost per acquisition (CPA) for each campaign to assess efficiency.

    • Identify the average spending of customers acquired through each campaign.

    • Compare the average spending of customers from different campaigns to find the best performer...

  • Answered by AI
Round 2 - Case Study 

Case study about a Electronic Rental company in entertainment industry. Profits are declining, what could be the reasons? Company is trying to liquidate older equipments. Given data around depreciation, what would be the total cost incurred?

Interview Preparation Tips

Topics to prepare for Merilytics Business Development Manager interview:
  • Case Studies
  • Resume
  • Calculation
Interview preparation tips for other job seekers - Interviewers were helpful but started to fill my interview perfomance data while their screen was shared which was very disheartening and distracting.
My advice would be to practice mathematical calculations and do ain of 5-6 case studies which involves number crunching.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

CAT type questions - more questions, less time

Round 2 - Technical 

(2 Questions)

  • Q1. One guesstimate, one consulting case
  • Q2. One analytical case

Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Aug 2024

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

Round 1 - Aptitude Test 

20 MINUTES 15 QUESTIONS OF DATA INTERPETRATION

Round 2 - HR 

(3 Questions)

  • Q1. INTRODUCE YOURSELF
  • Ans. 

    I am a dedicated and detail-oriented analyst with a strong background in data analysis and problem-solving.

    • Experienced in conducting thorough research and interpreting complex data sets

    • Proficient in using analytical tools such as Excel, SQL, and Tableau

    • Skilled in identifying trends and patterns to provide valuable insights for decision-making

    • Excellent communication skills for presenting findings and recommendations to ...

  • Answered by AI
  • Q2. WHY THIS ROLE ?
  • Ans. 

    I am passionate about analyzing data and providing valuable insights to drive strategic decision-making.

    • I have a strong background in data analysis and have successfully utilized various analytical tools and techniques in my previous roles.

    • I enjoy the challenge of interpreting complex data sets and identifying trends and patterns that can inform business strategies.

    • I am excited about the opportunity to work in a dynami...

  • Answered by AI
  • Q3. SIMPLE CASE STUDY
Round 3 - Technical 

(2 Questions)

  • Q1. CASE STUDY HARD ONE
  • Q2. DIFFERENT SITUATIONS IN THE SAME PROLEM
  • Ans. 

    Analyzing different situations within the same problem allows for a comprehensive understanding and effective solutions.

    • Identify the various factors contributing to the problem

    • Consider how each factor interacts with the others

    • Evaluate potential solutions based on the different scenarios

    • Adjust strategies as needed based on the changing circumstances

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test contains of programming language and aptitude questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell us about yourself
  • Ans. 

    I am a passionate data engineer with a strong background in data processing, ETL, and cloud technologies.

    • Education: Bachelor's degree in Computer Science with a focus on data management.

    • Experience: Worked at XYZ Corp, where I developed ETL pipelines using Apache Spark.

    • Skills: Proficient in SQL, Python, and cloud platforms like AWS and Azure.

    • Projects: Designed a data warehouse solution that improved reporting efficiency...

  • Answered by AI
  • Q2. Which is your favourite programming language
  • Ans. 

    My favorite programming language is Python because of its readability, versatility, and extensive libraries.

    • Python is known for its readability, making it easier to write and maintain code.

    • Python is versatile and can be used for web development, data analysis, machine learning, and more.

    • Python has a vast collection of libraries like NumPy, Pandas, and Matplotlib that make data manipulation and visualization easier.

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are SQL commands
  • Ans. 

    SQL commands are instructions used to interact with databases to perform tasks such as querying, updating, and managing data.

    • SQL commands are used to perform various operations on databases, such as SELECT, INSERT, UPDATE, DELETE.

    • Examples of SQL commands include SELECT * FROM table_name, INSERT INTO table_name (column1, column2) VALUES (value1, value2), UPDATE table_name SET column1 = value1 WHERE condition, DELETE FRO...

  • Answered by AI
  • Q2. Difference between left and right join
  • Ans. 

    Left join returns all records from the left table and the matched records from the right table, while right join returns all records from the right table and the matched records from the left table.

    • Left join keeps all records from the left table, even if there are no matches in the right table.

    • Right join keeps all records from the right table, even if there are no matches in the left table.

    • Example: If we have a table o...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your family
  • Ans. 

    I come from a close-knit family that values education, support, and shared experiences, fostering strong bonds and mutual respect.

    • My parents are both educators, instilling a love for learning in my siblings and me.

    • I have two siblings; my brother is an engineer and my sister is pursuing a career in medicine.

    • Family gatherings are a tradition, where we share stories and celebrate milestones together.

    • We enjoy outdoor activ...

  • Answered by AI
  • Q2. Why did u leave
Round 2 - One-on-one 

(2 Questions)

  • Q1. Special about u
  • Q2. Why to hire u
  • Ans. 

    I bring extensive experience, proven leadership skills, and a passion for driving results that align with your organization's goals.

    • Proven track record of leading teams to exceed performance targets, such as increasing sales by 30% in my previous role.

    • Strong analytical skills, demonstrated by successfully implementing data-driven strategies that improved operational efficiency by 25%.

    • Excellent communication and interpe...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Pure aptitude questions, time will be definitely less comparatively but just do as many correct question you can.

Round 2 - Case Study 

Business Case Study question check calculations also.

Round 3 - Case Study 

Case study checking calculations and business understanding

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

The test was around 20 minutes and asked DILR questions along with some quant

Round 2 - Technical 

(1 Question)

  • Q1. Best time to buy and sell stock- leetcode quesiton
  • Ans. 

    Determine the best time to buy and sell stock for maximum profit using an array of prices.

    • Iterate through the array of stock prices to find the minimum price up to that point.

    • Calculate potential profit by subtracting the minimum price from the current price.

    • Keep track of the maximum profit encountered during the iteration.

    • Example: For prices [7, 1, 5, 3, 6, 4], buy at 1 and sell at 6 for a profit of 5.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Merilytics Business Analyst interview:
  • DSA
Interview preparation tips for other job seekers - They start with leetcode easy questions then move onto hard questions the intention is not to solve it but to test your understanding

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Merilytics?
Ask anonymously on communities.

Merilytics Interview FAQs

How many rounds are there in Merilytics interview?
Merilytics interview process usually has 2-3 rounds. The most common rounds in the Merilytics interview process are Aptitude Test, Case Study and One-on-one Round.
How to prepare for Merilytics 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 Merilytics. The most common topics and skills that interviewers at Merilytics expect are SQL, Python, Analytics, Data Analytics and Tableau.
What are the top questions asked in Merilytics interview?

Some of the top questions asked at the Merilytics interview -

  1. Case study on marketing campaigns. What should be the KPIs/metrics to track the...read more
  2. Given data around the change in monthly orders from 3 different campaigns, find...read more
  3. Given data around change in customer spending and cost of each campaign, find ...read more
How long is the Merilytics interview process?

The duration of Merilytics 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

3.8/5

based on 43 interview experiences

Difficulty level

Easy 31%
Moderate 69%

Duration

Less than 2 weeks 93%
2-4 weeks 3%
6-8 weeks 3%
View more

Interview Questions from Similar Companies

Sigmoid Interview Questions
3.4
 • 62 Interviews
ICRA Analytics Interview Questions
3.3
 • 43 Interviews
Dunnhumby Interview Questions
4.0
 • 31 Interviews
Coronis Health Interview Questions
3.7
 • 26 Interviews
Everest Group Interview Questions
3.3
 • 25 Interviews
View all

Merilytics Reviews and Ratings

based on 160 reviews

2.9/5

Rating in categories

3.5

Skill development

2.4

Work-life balance

2.8

Salary

3.4

Job security

2.9

Company culture

3.0

Promotions

2.9

Work satisfaction

Explore 160 Reviews and Ratings
Senior Business Analyst
153 salaries
unlock blur

₹6.6 L/yr - ₹11 L/yr

Business Associate
133 salaries
unlock blur

₹9 L/yr - ₹14.8 L/yr

Business Analyst
85 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Senior Technical Associate
73 salaries
unlock blur

₹5 L/yr - ₹10.4 L/yr

Senior Analyst
68 salaries
unlock blur

₹4 L/yr - ₹14 L/yr

Explore more salaries
Compare Merilytics with

Markets and Markets

3.1
Compare

Ascent Business Solutions

3.3
Compare

LogixHealth

3.5
Compare

Coronis Health

3.7
Compare
write
Share an Interview