Upload Button Icon Add office photos
Engaged Employer

i

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

Bewakoof Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Bewakoof Buying and Merchandising Manager Interview Questions and Answers

Updated 5 Jun 2022

Bewakoof Buying and Merchandising 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 

(1 Question)

  • Q1. Buying and Merchandising

Interview Preparation Tips

Interview preparation tips for other job seekers - Ready for start up, team manager, stakeholder management

Interview questions from similar companies

Intern Interview Questions & Answers

Paytm Mall user image Monu Singh Yadav

posted on 22 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Very impressive able to solve 100 coding questions within 10 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Find min in array
  • Ans. 

    Find the minimum string in an array of strings.

    • Iterate through the array and compare each string to find the minimum.

    • Use a built-in function like sort() to sort the array and then return the first element.

    • Consider using a loop to compare each element with the current minimum.

  • Answered by AI
  • Q2. Find max in array
  • Ans. 

    Find the maximum value in an array of strings.

    • Convert the strings to numbers if needed before finding the maximum value.

    • Use a loop to iterate through the array and compare each element to find the maximum value.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. What do you think about retail sales?
  • Ans. 

    I believe retail sales are crucial for businesses to generate revenue and connect with customers.

    • Retail sales involve selling products or services directly to consumers.

    • Effective retail sales strategies can help businesses increase revenue and build customer loyalty.

    • Retail sales often involve understanding customer needs and preferences to make successful sales.

    • Examples: Offering promotions, providing excellent custome...

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

I applied via Indeed and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    Experienced professional with a background in retail management and a passion for team leadership.

    • Over 5 years of experience in retail management

    • Strong leadership skills with a track record of motivating teams to achieve goals

    • Excellent communication and problem-solving abilities

    • Proven ability to drive sales and increase customer satisfaction

    • Passionate about developing and mentoring team members

  • Answered by AI
  • Q2. What do your previous working experience
  • Ans. 

    I have over 5 years of experience in retail management, leading teams and driving sales.

    • Managed a team of 15 sales associates in a busy retail store

    • Implemented new sales strategies that resulted in a 20% increase in revenue

    • Handled customer complaints and resolved issues effectively

  • Answered by AI
Round 2 - Case Study 

Case study regarding retail & asking regarding retail kpi question

Interview Preparation Tips

Interview preparation tips for other job seekers - 1) retail kpi & it's case study
2) sales techniques & how would you improve sales.
3) CRM related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why you want to join ?
  • Q2. Your work experience and why it is relevant?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic SQL question.
  • Q2. Order of execution
  • Ans. 

    The order of execution refers to the sequence in which instructions or operations are executed in a program.

    • The order of execution is determined by the programming language and the specific code being executed.

    • Generally, code is executed line by line from top to bottom.

    • However, there are exceptions such as loops, conditionals, and function calls that can alter the order of execution.

    • In some programming languages, there...

  • Answered by AI
  • Q3. Window functions
  • Q4. Aggregate functions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Level order tree traversal
  • Q2. Find the pair element from the array
  • Ans. 

    Find the pair element from the array

    • Iterate through the array and use a hashmap to store elements and their counts

    • Check if the current element's complement exists in the hashmap

    • Return the pair if found, otherwise return null

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Aptitude Test 

We had an aptitude test which involved 60 questions in 15 minutes. Of course, no one can solve this fast, but it was about the hit rate / accuracy and volume. Subsequent followed with two guesstimate based rounds and final as HR round which involved asking about college projects, extra curricular experiences and so on.

I applied via Campus Placement and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Mostly questions were asked from sql,joins were more focussed
  • Q2. Puzzle mostly from gfg were asked involving analytics skills
  • Q3. Guesstimates could also be asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Sql is must,Be logical and work on analytical thinking.

I applied via Recruitment Consultant and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. First-round was an online test on hacker rank. There were 4 questions related to the array, string, and tree.
  • Q2. Create an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Make all fields private and final

    • Don't provide any setter methods

    • Ensure that any mutable objects passed to the constructor are defensively copied

    • Make the class final so that it cannot be subclassed

  • Answered by AI
  • Q3. Create a Singelton pattern.
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class.

    • Create a private static instance of the class.

    • Create a public static method to access the instance, and create the instance if it doesn't exist.

    • Ensure thread safety by using synchronized keyword or double-checked locking.

  • Answered by AI
  • Q4. Difference between Vector and ArrayList.
  • Ans. 

    Vector is synchronized and ArrayList is not. Vector is thread-safe and ArrayList is not.

    • Vector is a legacy class and ArrayList is a part of the Java Collection Framework.

    • Vector is synchronized which means only one thread can access it at a time, while ArrayList is not.

    • Vector is thread-safe which means it can be used in a multi-threaded environment, while ArrayList is not.

    • Vector is slower than ArrayList because of synch...

  • Answered by AI
  • Q5. Create Linked List without using the internal library and provide the functionality of add delete find.
  • Ans. 

    Create Linked List without using internal library and provide add, delete, find functionality.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head pointer and methods to add, delete, and find nodes

    • Use a loop to traverse the list and perform operations

    • Handle edge cases such as adding to an empty list or deleting the head node

  • Answered by AI
  • Q6. One question was related to binary search.
  • Q7. Few more questions related to java.
  • Q8. The architecture of the current system.
  • Ans. 

    The current system follows a microservices architecture.

    • The system is divided into multiple independent services.

    • Each service has its own database and communicates with other services through APIs.

    • The architecture allows for scalability and flexibility.

    • Examples of microservices used in the system include user authentication, payment processing, and inventory management.

  • Answered by AI
  • Q9. Find the total no of the island in a 2d matrix. Working code was required.
  • Ans. 

    Find the total no of islands in a 2D matrix.

    • Use DFS or BFS to traverse the matrix.

    • Mark visited cells to avoid repetition.

    • Count the number of islands found.

  • Answered by AI
  • Q10. Find loop in a linked list.
  • Ans. 

    Loop detection in a linked list.

    • Use two pointers, one moving at twice the speed of the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • If there is no loop, the faster pointer will reach the end of the list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Before the interview brush up on the Linked list, Tree, and array. This is a common interview problem asked in Snapdeal.

Skills evaluated in this interview

Bewakoof Interview FAQs

How many rounds are there in Bewakoof Buying and Merchandising Manager interview?
Bewakoof interview process usually has 2 rounds. The most common rounds in the Bewakoof interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.3k Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Jaipur Rugs Interview Questions
4.4
 • 26 Interviews
Ramraj Cotton Interview Questions
3.9
 • 20 Interviews
YKK Interview Questions
3.9
 • 19 Interviews
XYXX Apparels Interview Questions
4.0
 • 13 Interviews
Van Heusen Interview Questions
4.1
 • 11 Interviews
Zivame.com Interview Questions
3.7
 • 9 Interviews
View all
Business Analyst
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Category Manager
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Bewakoof with

Myntra

4.0
Compare

Flipkart

4.0
Compare

Paytm Mall

3.6
Compare

Snapdeal

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