Upload Button Icon Add office photos
Engaged Employer

i

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

DeHaat Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

DeHaat Warehouse Manager Interview Questions and Answers

Updated 6 Aug 2022

DeHaat Warehouse Manager Interview Experiences

3 interviews found

I applied via Walk-in and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Work released and old company work related
Round 3 - HR 

(1 Question)

  • Q1. Salary related and company culture

Interview Preparation Tips

Topics to prepare for DeHaat Warehouse Manager interview:
  • MS Office
  • Warehouse Management System
  • Inventory Control
  • Internal Audit
  • Stock Control
  • Stock Taking
  • Inward
  • Outward Clearing
Interview preparation tips for other job seekers - Working is very smart and team work properly

I applied via Walk-in and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Setuation Type and How to manage your logistics support at minimum cost.
  • Ans. 

    To manage logistics support at minimum cost, focus on optimizing processes, reducing waste, and leveraging technology.

    • Streamline inventory management to reduce excess stock and minimize storage costs

    • Implement a transportation management system to optimize shipping routes and reduce transportation costs

    • Use data analytics to identify areas for improvement and make data-driven decisions

    • Collaborate with suppliers to negoti...

  • Answered by AI
  • Q2. Management about Vendor, Utilisation of manpower and own vehicle.
  • Q3. Related to the supply chain.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have knowledge of your field than it will be okay other wise going to be dangerous.

Warehouse Manager Interview Questions Asked at Other Companies

asked in BigBasket
Q1. What is the most important aspect of warehouse and supply chain o ... read more
Q2. What is Inventory Management, Supply chain & Cycle count ?
Q3. How do you manage inventory discrepancies?
Q4. How you are controlling system transaction? How to control Invent ... read more
asked in DealShare
Q5. Question : 2. How to do better supply within timing / How to do b ... read more

I applied via Referral and was interviewed before Apr 2021. There were 2 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 - Behavioral 

(1 Question)

  • Q1. Why you are joined this company

Interview Preparation Tips

Interview preparation tips for other job seekers - Hr and management team are asking a simple question with releated supply chain work...

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about DeHaat?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Regarding company visssion and mission

I appeared for an interview before Sep 2021.

Round 1 - HR 

(1 Question)

  • Q1. Tell me something about your self and your previous organisation?
  • Ans. 

    Dynamic sales executive with 5 years of experience in driving revenue growth and building client relationships in the tech industry.

    • Worked at Tech Solutions Inc. as a Sales Executive, achieving 120% of my sales target in the last fiscal year.

    • Developed strong relationships with clients, resulting in a 30% increase in repeat business.

    • Implemented a new CRM system that improved lead tracking and follow-up efficiency by 40%...

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

(1 Question)

  • Q1. Why you want to join this organisation?
  • Ans. 

    I am drawn to this organization for its innovative approach, strong values, and commitment to employee growth and customer satisfaction.

    • The organization's reputation for innovation aligns with my passion for staying ahead in sales strategies.

    • I admire your commitment to customer satisfaction, as seen in your recent award for outstanding service.

    • The emphasis on employee development through training programs resonates wit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Never say ‚ u left ur previous organisation for growth.

I applied via Walk-in and was interviewed in Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I just shared my previous experience and by interest in sales executive as a organization backup agriculture farmer s life growth and happy to serve in job

Interview Preparation Tips

Interview preparation tips for other job seekers - As I said that to solve problems in sales executive with customer face to face in practical if any problems arise and to calm and to growth of organization as well customer life style changed to technology

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

4 Questions which were of Easy, Medium, and Hard level.

  • Q1. 

    Lowest Common Ancestor of a Binary Tree III

    The structure of a binary tree has been modified so that each node includes a reference to its parent node.

    Problem Statement

    You are provided with two nodes,...

  • Ans. 

    This question is about finding the lowest common ancestor of two nodes in a binary tree with parent references.

    • Traverse from the given nodes to their respective root nodes and store the paths in two separate lists.

    • Compare the two lists and find the last common node.

    • Return the last common node as the lowest common ancestor.

  • Answered by AI
  • Q2. 

    Maximum Subarray Problem Statement

    Ninja has been given an array, and he wants to find a subarray such that the sum of all elements in the subarray is maximum.

    A subarray 'A' is considered greater than a...

  • Ans. 

    The problem is to find a subarray with the maximum sum in a given array.

    • Iterate through the array and keep track of the maximum sum and the current sum.

    • If the current sum becomes negative, reset it to 0.

    • Update the maximum sum if the current sum is greater.

    • Also keep track of the start and end indices of the subarray with the maximum sum.

    • Return the subarray using the start and end indices.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    The task is to find the next greater element for each element in an array.

    • Iterate through the array from right to left.

    • Use a stack to keep track of the elements that have a greater element to their right.

    • For each element, pop elements from the stack until a greater element is found or the stack is empty.

    • If a greater element is found, it is the next greater element for the current element.

    • If the stack becomes empty, the...

  • Answered by AI
  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    The question asks to find the total amount of rainwater that can be trapped in the given elevation map.

    • Iterate through the array and find the maximum height on the left and right side of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on both sides and subtracting the height of the bar.

    • Sum up the amount of water trapped at each bar to get the total amo...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It is just a formality round, asked basic questions like relocation and joining date etc

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriawith resumeSwiggy interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Puzzles, Project, Mock Interviews, etcTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be good with all data structures and algorithms
Tip 2 : Able to explain your projects well 
Tip 3 : focus on basics

Application resume tips for other job seekers

Tip 1 : Try to make a single-page resume. 
Tip 2 : Don't write unnecessary details like hobbies, family, etc.

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Walk-in and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about your initiative which is done by you in past company's and what type effect comes overall after implemented .
  • Ans. 

    Implemented a new inventory management system which improved efficiency and reduced costs.

    • Implemented a new inventory management system that streamlined the process of tracking and managing stock levels.

    • The new system automated manual tasks, such as stock counting and reordering, saving time and reducing errors.

    • As a result, inventory accuracy improved, reducing stockouts and overstocking.

    • The improved efficiency led to ...

  • Answered by AI
  • Q2. Which type of culture you required in working and if not on there than what should I do.

Interview Preparation Tips

Interview preparation tips for other job seekers - 50% interviews gone wrong because many time candidates have in some problems and miss great opportunity but potential is very good for the required position .
So track candidets experience and talk about on that points .
Many time candidats not comfort understand in the language so no need on that time use another language in fact use language according candidats

I applied via Walk-in and was interviewed in Feb 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions related my confidence
  • Q2. I am quite confident about my knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on your self.

Interview Questionnaire 

2 Questions

  • Q1. Writing mail and personal details
  • Q2. Work without team if no body come
  • Ans. 

    Working independently requires self-motivation, effective time management, and problem-solving skills to achieve goals without team support.

    • Set clear goals: Define what needs to be accomplished to stay focused.

    • Prioritize tasks: Use a priority matrix to identify urgent and important tasks.

    • Utilize available resources: Leverage tools and technology to enhance productivity.

    • Communicate effectively: Keep stakeholders informe...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: System knowledge
Vlookup and pivat table

General Tips: Some like as prepared in ur present mind and capabilities

DeHaat Interview FAQs

How many rounds are there in DeHaat Warehouse Manager interview?
DeHaat interview process usually has 2 rounds. The most common rounds in the DeHaat interview process are One-on-one Round, Resume Shortlist and Behavioral.
What are the top questions asked in DeHaat Warehouse Manager interview?

Some of the top questions asked at the DeHaat Warehouse Manager interview -

  1. Setuation Type and How to manage your logistics support at minimum co...read more
  2. Management about Vendor, Utilisation of manpower and own vehic...read more
  3. Related to the supply cha...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.7
 • 474 Interviews
Meesho Interview Questions
3.7
 • 369 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
Tata 1mg Interview Questions
3.6
 • 188 Interviews
Digit Insurance Interview Questions
3.8
 • 158 Interviews
Paisabazaar.com Interview Questions
3.4
 • 156 Interviews
Urban Company Interview Questions
3.4
 • 143 Interviews
Collegedunia Interview Questions
3.0
 • 103 Interviews
Ninjacart Interview Questions
3.9
 • 100 Interviews
View all
DeHaat Warehouse Manager Salary
based on 21 salaries
₹3.8 L/yr - ₹6 L/yr
25% less than the average Warehouse Manager Salary in India
View more details

DeHaat Warehouse Manager Reviews and Ratings

based on 13 reviews

4.5/5

Rating in categories

4.5

Skill development

4.0

Work-life balance

4.2

Salary

4.0

Job security

4.1

Company culture

4.1

Promotions

4.1

Work satisfaction

Explore 13 Reviews and Ratings
Assistant Manager
105 salaries
unlock blur

₹4 L/yr - ₹9.3 L/yr

Senior Executive
70 salaries
unlock blur

₹3.4 L/yr - ₹7.2 L/yr

Manager
47 salaries
unlock blur

₹8.8 L/yr - ₹15.1 L/yr

Sales Executive
42 salaries
unlock blur

₹2.5 L/yr - ₹4.8 L/yr

Management Trainee
37 salaries
unlock blur

₹3 L/yr - ₹6.8 L/yr

Explore more salaries
Compare DeHaat with

Udaan

3.9
Compare

Swiggy

3.7
Compare

BlackBuck

3.7
Compare

Ninjacart

3.9
Compare
write
Share an Interview