Upload Button Icon Add office photos

Filter interviews by

Startup Business Development and Sales Manager Interview Questions and Answers

Updated 10 Mar 2022

Startup Business Development and Sales Manager Interview Experiences

1 interview found

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 

(2 Questions)

  • Q1. Tell me something about yourself
  • Q2. They will ask something from what you share

Interview Preparation Tips

Interview preparation tips for other job seekers - Be you first of all, and whatever you say it should be well sentenced and deep felt. Always research about the job the jd and the company

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Job responsibilities?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing Just be real and honest, keep a good flow in English because it is mandatory, keep a thorough knowledge of your responsibilities at your previous job.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Check palindrome , anagram of string with O(n)
  • Ans. 

    To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.

    • Create a hash table to store the frequency of each character in the string.

    • For palindrome, check that no more than one character has an odd frequency.

    • For anagram, compare the hash tables of the two strings.

    • If the hash tables are equal, the strings are anagrams.

    • If the hash tables differ by only one character, the strin...

  • Answered by AI
  • Q2. Optimized solutions and core principles applied in OOPS
  • Ans. 

    Optimized solutions and core principles applied in OOPS

    • Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS

    • Optimized solutions can be achieved through efficient algorithms and data structures

    • Design patterns like Singleton, Factory, Observer can also be used for optimized solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for best possible solutions. and they are not using that in project then also they ask

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an integer array containing numbers from 0 to (N - 2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number that appears twice in the array.

    • The duplicate number is always present in the given array.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Bubble Sort Problem Statement

    Sort an unsorted array of non-negative integers using the Bubble Sort algorithm, which swaps adjacent elements if they are not in the correct order to sort the array in non-d...

  • Ans. 

    Bubble Sort is used to sort an array of non-negative integers in non-decreasing order by swapping adjacent elements if they are not in the correct order.

    • Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.

    • Repeat this process until the array is sorted in non-decreasing order.

    • Time complexity of Bubble Sort is O(n^2) in worst case.

    • Example: For input [6, 2, 8, 4, 10], the o

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the shortest path to each house.

    • Once the destination house is reached, backtrack to find the shortest path.

    • Consider using a queue data structure to implement BFS efficiently.

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria7Morgan Stanley interview preparation:Topics to prepare for the interview - Java , spring, aws,azure, Algorithm, computer Architecture, compiler designTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : online resources
Tip 2 : cracking the coding interview by Gayle laykemann this is one of the best book for learning the concept at the initial level. Start practicing the approaches mention in the book once done apply the same to similar level pattern questions.
Tip 3 : geeks for geeks start from school level and then move towards easy medium and hard once done practice the previous year questions

Application resume tips for other job seekers

Tip 1 : precise clear concise and well written 
Tip 2 : mentions the skills sets along with the projects

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Discussed about Retail business experience
  • Q2. Team handling experience
  • Q3. Managerial skills
  • Q4. Previous employers details

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to explain well designed manner

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was in the evening at about 7 pm. The test platform was quite user friendly and easy to use.
There were 3 sections in test. One was logical ability, second was english, third was coding 
Questions were of medium difficulty.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be the value at the target index of the ar

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

It was a 30 minute interview. In which I was provided with questions on data structures and algorithms to check my problem solving skills.

  • Q1. 

    Non-Decreasing Array Problem Statement

    Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element.

    An array is defined as non-de...

  • Ans. 

    Determine if an array can be transformed into a non-decreasing array by modifying at most one element.

    • Iterate through the array and check if there are more than one decreasing elements.

    • If there is only one decreasing element, check if modifying it can make the array non-decreasing.

    • Return true if the array can be made non-decreasing by modifying at most one element, otherwise false.

  • Answered by AI
Round 3 - Face to Face 

Round duration - 40 Minutes
Round difficulty - Medium

In this round , interviewer discussed about my resume. As I had done a internship in sql and database so he asked me questions related to dbms and sql queries.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteriaAbove 7.5 cgpaCiti Bank interview preparation:Topics to prepare for the interview - Data structures, oops, algorithms, operating system, dbms, pointers, dynamic programmingTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : practice data structures and algorithms thoroughly
Tip 2 : do atleast 2 project
Tip 3 : maintain a decent cgpa (above 8.5)

Application resume tips for other job seekers

Tip 1 : write all your academic achievements on resume
Tip 2 : do not write false things in resume
Tip 3 : be thorough with your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. Find a number which occurs odd number of times and all number occurs even number of times
  • Ans. 

    Find an odd occurring number among even occurring numbers.

    • Use XOR operation to cancel out even occurring numbers and get the odd occurring number.

    • Iterate through the array and XOR each element with the result variable.

    • The final result will be the odd occurring number.

  • Answered by AI
  • Q2. Some discussion about my minor project
  • Q3. Spiral order of binary tree and mattrix, print it
  • Ans. 

    Print the spiral order of a binary tree and matrix.

    • For binary tree, use level order traversal and alternate direction for each level.

    • For matrix, use four pointers to traverse in spiral order.

    • Example for binary tree: 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9

    • Example for matrix: 1 2 3 4 -> 8 7 6 5 -> 9 10 11 12 -> 16 15 14 13

  • Answered by AI
  • Q4. Some question about os,dbms
  • Q5. Find pair which have a given sum in a given array
  • Ans. 

    Finding pairs in an array with a given sum.

    • Iterate through the array and for each element, check if the difference between the given sum and the element exists in the array.

    • Use a hash table to store the elements of the array and their indices for faster lookup.

    • If there are multiple pairs with the same sum, return any one of them.

    • If no pair is found, return null or an empty array.

  • Answered by AI
  • Q6. Find total number of k element which have a given avg in a given array in minimum time complexity
  • Ans. 

    Find total number of k element with given avg in an array in minimum time complexity.

    • Use sliding window technique to traverse the array in O(n) time complexity.

    • Maintain a sum variable to keep track of the sum of elements in the window.

    • If the sum of elements in the window is equal to k times the given avg, increment the count.

    • Move the window by subtracting the first element and adding the next element in the array.

  • Answered by AI
  • Q7. Print all elements which in not boundary element in a given binary tree
  • Ans. 

    Printing non-boundary elements of a binary tree

    • Traverse the tree in any order (preorder, inorder, postorder)

    • Check if the current node is not a boundary node (not the first or last node in its level)

    • If it is not a boundary node, print its value

    • Recursively traverse its left and right subtrees

  • Answered by AI
  • Q8. Then some question about process synchronisation,error vs exception,and then 2-3 hr question

Interview Preparation Tips

Round: Test
Experience: practice codes on paper
Tips:

Round: Technical Interview
Experience: very good
Tips: please try to explain each and every question in detail

Round: Technical Interview
Experience: my hr round is not taken by them,and some of face 3rd round ,which is HR
Tips: please prepare all types of problem from geeksforgeeks

Skill Tips: please try to understand every problem from geeksforgeeks
Skills: ds
College Name: NIT Bhopal
Motivation: best work culture,and a lots of learning opportunity in this company,and in every 6 month there is a appraisal

Skills evaluated in this interview

I appeared for an interview in Dec 2016.

Interview Questionnaire 

13 Questions

  • Q1. Apart from your Resume tell me about your self ?
  • Ans. 

    Experienced sales professional with a proven track record of exceeding targets and building strong client relationships.

    • Over 5 years of sales experience in the consumer goods industry

    • Consistently met or exceeded sales targets by 20% each quarter

    • Built and maintained strong relationships with key clients such as Walmart and Target

    • Led a team of sales representatives to increase market share by 15% in one year

  • Answered by AI
  • Q2. Elaborate on few points that you have mentioned in your Resume?
  • Ans. 

    I have mentioned my experience in leading sales teams, developing strategies, and exceeding sales targets.

    • Led a team of 10 sales representatives to achieve a 20% increase in sales revenue within one year

    • Developed and implemented a new sales strategy that resulted in a 30% growth in market share

    • Consistently exceeded sales targets by 15% through effective sales planning and execution

  • Answered by AI
  • Q3. Tell me about your Summer Internship and your role ?
  • Ans. 

    I interned at a marketing firm where I assisted the sales team in developing strategies and analyzing market trends.

    • Assisted sales team in developing marketing strategies

    • Analyzed market trends to identify potential opportunities

    • Participated in client meetings to understand their needs and preferences

  • Answered by AI
  • Q4. Why do you think SBI cards is a good place to work for ?
  • Ans. 

    SBI Cards is a good place to work for due to its strong brand reputation, growth opportunities, and employee-friendly policies.

    • Strong brand reputation in the financial industry

    • Opportunities for career growth and advancement

    • Employee-friendly policies and benefits

    • Supportive work environment and team collaboration

    • Commitment to innovation and technology-driven solutions

  • Answered by AI
  • Q5. Tell me about your last job and your role?
  • Ans. 

    I was responsible for managing a team of sales representatives and achieving sales targets in my assigned territory.

    • Managed a team of sales representatives

    • Set and achieved sales targets in assigned territory

    • Developed and implemented sales strategies

    • Provided training and support to team members

    • Maintained relationships with key clients

  • Answered by AI
  • Q6. Reasons for quitting the last company ?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Desire for career advancement

    • Limited growth opportunities in previous company

    • Seeking new challenges and responsibilities

  • Answered by AI
  • Q7. What if your previous company offered you the same job role and package , which one will you prefer ?
  • Q8. Do a survey and plan a way on "how to retain customer for SBI cards" ?
  • Ans. 

    To retain customers for SBI cards, conduct a survey to understand their needs and preferences, offer personalized rewards and benefits, provide excellent customer service, and continuously engage with customers through targeted marketing campaigns.

    • Conduct a survey to gather feedback and understand customer needs

    • Offer personalized rewards and benefits based on customer spending patterns

    • Provide excellent customer service...

  • Answered by AI
  • Q9. Whats your favorite subject and why?
  • Ans. 

    My favorite subject is psychology because I am fascinated by the human mind and behavior.

    • I enjoy learning about different psychological theories and concepts

    • I find it interesting to analyze human behavior and understand the reasons behind it

    • I am intrigued by the impact of mental health on individuals and society

  • Answered by AI
  • Q10. 4 P's of marketing and which one is the most important and why?
  • Ans. 

    The 4 P's of marketing are Product, Price, Place, and Promotion. The most important P depends on the specific context and goals of the business.

    • Product: Refers to the goods or services being offered by a company. It includes the features, quality, design, and packaging.

    • Price: Refers to the amount customers are willing to pay for the product. It should be set in a way that covers costs and generates profit.

    • Place: Refers...

  • Answered by AI
  • Q11. 4 C's of marketing and apply this and describe how SBI works?
  • Q12. Tell me about your leadership skills?
  • Ans. 

    I have strong leadership skills demonstrated through my ability to motivate and inspire teams to achieve goals.

    • I have experience in leading teams in previous roles

    • I am able to communicate effectively and provide clear direction

    • I am skilled at problem-solving and conflict resolution

    • I prioritize team development and mentorship

  • Answered by AI
  • Q13. Are you okay with the Job location?
  • Ans. 

    Yes, I am okay with the job location as it is convenient for me.

    • I have no issues with the job location

    • I am familiar with the area and have no problem commuting

    • The job location is convenient for me

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: SBI cards visited our campus at the end of December 2016, peoples selected were already holding 1 or more years of experience in different industries. 30 students were selected for the further process of recruitment.
Tips: Peoples who usually drop for preparation its better if they can do SIP(work from home) or some training programs.

Round: Company Briefing
Experience: 3 Recruiters from SBI cards visited our campus, before starting the process they made sure that the candidates are well aware of SBI cards, its achievements, milestones and the Job role that they would be hired for.
For doing so one of the manager played a ppt giving a brief information and all the other details.
This lasted for an hour after which the process started.

Round: Technical + HR Interview
Experience: The interviews was very stressful and each interview lasted for an hour, the recruiters were very particular in selected the best candidates suitable for the job role.
Their question were based on your experienced your contribution and your depth knowledge about sales, marketing and distribution.
They were looking for candidates with better soft skill, more extrovert and detail oriented students.
Tips: You need to be well groomed and have a good hygiene
Depth knowledge about Sales, Marketing and SDM.
Proficiency in English and practice your soft skills.
Learn more about the job role and make changes in your resume.

Skills: Your Depth In Subject, Attitude, Graph Theory, Proficiency In English, Ability To Cope Up With Stress

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

I appeared for an interview in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class

  • Answered by AI
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
  • Q5. What is MVC
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and modularity in software development.

    • Example: In a web applica...

  • Answered by AI
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI

Interview Preparation Tips

Skills: Java Application Development

Skills evaluated in this interview

Startup Interview FAQs

How many rounds are there in Startup Business Development and Sales Manager interview?
Startup interview process usually has 2 rounds. The most common rounds in the Startup interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 573 Interviews
HSBC Group Interview Questions
3.9
 • 492 Interviews
American Express Interview Questions
4.1
 • 368 Interviews
BNY Interview Questions
3.8
 • 352 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.6
 • 294 Interviews
Morningstar Interview Questions
3.9
 • 245 Interviews
FactSet Interview Questions
3.9
 • 210 Interviews
View all
Software Engineer
43 salaries
unlock blur

₹10.7 L/yr - ₹26 L/yr

Software Developer
39 salaries
unlock blur

₹4 L/yr - ₹12.2 L/yr

Product Manager
20 salaries
unlock blur

₹8.9 L/yr - ₹31 L/yr

Front end Developer
18 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Consultant
17 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Explore more salaries
Compare Startup with

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare

Citicorp

3.7
Compare

BNY

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