Upload Button Icon Add office photos

Filter interviews by

Vodacom Business Development Associate Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What are different programming languages, you worked previously... ???
  • Ans. 

    I have worked with Java, Python, and SQL.

    • Proficient in Java for developing enterprise applications

    • Experience in Python for data analysis and automation

    • Skilled in SQL for database management and querying

  • Answered by AI

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 experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. About yourself and your experience
Round 2 - Technical 

(1 Question)

  • Q1. Financial data for baking companies and other industries
  • Ans. 

    Financial data for baking companies and other industries

    • Financial statements like income statement, balance sheet, and cash flow statement are key for analyzing baking companies and other industries

    • Key financial ratios like profitability ratios, liquidity ratios, and solvency ratios can provide insights into the financial health of these companies

    • Comparing financial data of baking companies with industry benchmarks can...

  • Answered by AI

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Sql test like joins and etc

Round 2 - HR 

(1 Question)

  • Q1. Why do you want to join the company

Interview Preparation Tips

Topics to prepare for Thermax Limited Business Analyst interview:
  • Python
Interview preparation tips for other job seekers - prepare well before going to interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Behavioural Question
Round 3 - One-on-one 

(1 Question)

  • Q1. General Question

I appeared for an interview 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

I appeared for an interview 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

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 applied via Referral and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Types of Joins in SQL, minimum and maximum number of rows possible from these joins
  • Ans. 

    Types of SQL joins and their minimum and maximum possible rows.

    • Types of joins: Inner, Left Outer, Right Outer, Full Outer, Cross

    • Minimum rows: Inner - 0, Left/Right Outer - 1, Full Outer - 0, Cross - product of rows

    • Maximum rows: Inner/Left/Right/Full Outer - product of rows, Cross - product of rows

  • Answered by AI
  • Q2. Mean, median, mode, measures of central tendency
Round 2 - Case Study 

1.Features you would look for if you have to buy an elevator
2. How do you estimate the number of trains passing through a station

Round 3 - Behavioral 

(1 Question)

  • Q1. Why do you want to join swiggy ? What are your plans for upcoming years ?
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and don't behave cocky. At Swiggy, candidate attitude and team fit is given a lot of importance.

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

L&T Construction Interview Questions
4.0
 • 765 Interviews
Swiggy Interview Questions
3.8
 • 441 Interviews
ITC Infotech Interview Questions
3.6
 • 350 Interviews
Udaan Interview Questions
3.9
 • 338 Interviews
CitiusTech Interview Questions
3.3
 • 278 Interviews
Thermax Limited Interview Questions
4.1
 • 260 Interviews
Morningstar Interview Questions
3.9
 • 245 Interviews
ABB Interview Questions
4.1
 • 242 Interviews
IKS Health Interview Questions
3.6
 • 235 Interviews
View all
Business Analyst
4 salaries
unlock blur

₹15 L/yr - ₹24.6 L/yr

Assistant Manager
4 salaries
unlock blur

₹7.9 L/yr - ₹12.5 L/yr

Java Developer
4 salaries
unlock blur

₹9.6 L/yr - ₹24 L/yr

Deputy Manager
4 salaries
unlock blur

₹13.8 L/yr - ₹34 L/yr

Manager
3 salaries
unlock blur

₹22 L/yr - ₹26 L/yr

Explore more salaries
Compare Vodacom with

L&T Construction

4.0
Compare

Udaan

3.9
Compare

Home Credit Finance

4.1
Compare

Swiggy

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