Upload Button Icon Add office photos

Filter interviews by

BarRaiser Business Development Associate Interview Questions and Answers

Updated 22 Feb 2024

BarRaiser Business Development Associate Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Regarding workex
Round 2 - One-on-one 

(1 Question)

  • Q1. Bant methodology and work ex

Interview questions from similar companies

I applied via Referral and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How can you understand the supply of restaurant in a particular area of a city ?
  • Ans. 

    To understand the supply of restaurants in a particular area of a city, we can use various methods.

    • Collect data from online directories like Yelp, Zomato, etc.

    • Conduct surveys to gather information about the number of restaurants in the area.

    • Analyze the population density and demographics of the area to estimate the demand for restaurants.

    • Check the number of restaurant permits issued by the local government.

    • Use GIS mapp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand any city's demographics for instance. Take most busy road and assume that 70% supply will be on food -tech (MArket Standard). Open Sw / Zo and see the supply available in that area in peak time. There can be more than one way to solve for these question

Interview Questionnaire 

2 Questions

  • Q1. They will only ask you Do you have an experience in b2b or if you don't have the experience they will select you
  • Q2. You answer should be yes I can do anything or I will do everything you want that's all they will select you
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Technical + Analytics
I gave my coding test this august 2024, it was purely based on SQL coding
8 question, 3 easy, 3 intermediate and 3 hard.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction and explain any one of the projects plus what was the analytics you used
  • Ans. 

    Implemented a project to optimize marketing campaigns using predictive analytics

    • Developed a predictive model to identify the most effective marketing channels

    • Utilized data from past campaigns to train the model

    • Used techniques such as regression analysis and decision trees to analyze the data

    • Generated insights on customer behavior and preferences to improve campaign targeting

  • Answered by AI
  • Q2. SQL coding, shared screen and was asked to find cumulative sum of cost for a table.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very very well prepared with SQL and you should be aware of advanced sql, not only concepts but solving questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Mostly sql question asked, moderate level

Round 2 - One-on-one 

(2 Questions)

  • Q1. Sql join and sub query
  • Q2. Window functions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

SQL test coding assessment which I am yet to give

I applied via LinkedIn and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions were from SQL, Python, Statistics & Business Case Studies/Metrics in the form of 4-5 rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - So Key Takeaway is You have to be good with your Technical Knowledge (SQL Expert, Python, Overall Stats Knowledge) and That is not really enough. What differs a Business Analyst from other Developers/Statisticians etc. is Business acumen, Problem Solving Skills etc. To have a Business Knowledge and Understanding such that you find the problems/solutions/ Metrics and then solve them using the Technology.

Interview Questionnaire 

1 Question

  • Q1. How much work experience
  • Ans. 

    The amount of work experience is an important factor in determining the suitability of a candidate for the Business Analyst role.

    • Work experience helps in developing a deep understanding of business processes and industry trends.

    • It allows the candidate to gain practical knowledge and skills in data analysis, problem-solving, and project management.

    • Having relevant work experience demonstrates the ability to work effectiv...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview ended after the ist question

I was interviewed in Nov 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Prepare well for SQL, you have to be strong in SQL. Questions related to SQL and A/B testing were asked.

  • Q1. Can you write a query to calculate the rolling sum?
  • Ans. 

    Query to calculate rolling sum

    • Use window functions like SUM() OVER() in SQL

    • Specify the window frame to define the range for the rolling sum

    • Example: SELECT date, value, SUM(value) OVER (ORDER BY date ROWS BETWEEN 2 PRECEDING AND CURRENT ROW) AS rolling_sum FROM table_name

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASwiggy interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPS, Database and SQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Prepare well for SQL, you have to be strong in SQL.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Mar 2021.

Interview Questionnaire 

4 Questions

  • Q1. Sql, A/B testing, case study about how to increase sales in particular area, what are the metrics that effect sales.
  • Q2. Steps involved in analysis of decrease in sales for particular area
  • Ans. 

    Steps involved in analyzing decrease in sales for a particular area

    • Identify the time period for which sales have decreased

    • Analyze the sales data for the area and compare it with previous periods

    • Identify any external factors that may have contributed to the decrease in sales

    • Conduct customer surveys to identify any issues with products or services

    • Analyze competitor activity in the area

    • Develop a plan to address the issues...

  • Answered by AI
  • Q3. Write sql query to find mean waiting period for delivery partner given driver I'd, ordered time and delivered time.
  • Ans. 

    SQL query to find mean waiting period for delivery partner given driver ID, ordered time and delivered time.

    • Use AVG function to calculate mean waiting period

    • Subtract ordered time from delivered time to get waiting period

    • Filter data by driver ID and delivery partner

    • Group by delivery partner

  • Answered by AI
  • Q4. Write query for rolling sum
  • Ans. 

    Rolling sum query adds up a specified number of rows in a table based on a given condition.

    • Use the OVER() function to specify the window frame for the rolling sum.

    • Specify the number of rows to include in the window frame using ROWS BETWEEN.

    • Use ORDER BY to specify the order of rows in the window frame.

    • Example: SELECT column1, SUM(column2) OVER (ORDER BY column1 ROWS BETWEEN 2 PRECEDING AND CURRENT ROW) AS rolling_sum FR

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for SQL, you have to be strong in SQL.
there will be two round one sql and other cae study

Skills evaluated in this interview

BarRaiser Interview FAQs

How many rounds are there in BarRaiser Business Development Associate interview?
BarRaiser interview process usually has 2 rounds. The most common rounds in the BarRaiser interview process are HR and One-on-one Round.

Tell us how to improve this page.

BarRaiser Business Development Associate Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 428 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
CARS24 Interview Questions
3.6
 • 331 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zepto Interview Questions
3.5
 • 208 Interviews
BlackBuck Interview Questions
3.8
 • 176 Interviews
AmbitionBox Interview Questions
4.9
 • 151 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
Digit Insurance Interview Questions
3.9
 • 142 Interviews
Paisabazaar.com Interview Questions
3.4
 • 139 Interviews
View all
Operations Associate
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Lead
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Operations
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare BarRaiser with

HackerRank

4.2
Compare

InterviewBit

3.6
Compare

GeeksForGeeks

3.2
Compare

LeetCode

5.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview