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 Assistant Manager- HR Interview Questions and Answers

Updated 29 Jun 2025

DeHaat Assistant Manager- HR Interview Experiences

1 interview found

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

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. What are the key impact areas for HR and the associated key performance indicators (KPIs)?
  • Ans. 

    HR impacts organizational success through talent management, employee engagement, and compliance, measured by specific KPIs.

    • Talent Acquisition: Measure time-to-fill positions and quality of hire through retention rates.

    • Employee Engagement: Use employee satisfaction surveys and track engagement scores over time.

    • Training and Development: Assess training effectiveness through post-training performance metrics and employee...

  • Answered by AI
  • Q2. What are some examples of how you would influence key metrics in HR?
  • Ans. 

    Influencing HR metrics involves strategic initiatives to enhance recruitment, retention, and employee engagement.

    • Implementing a robust employee onboarding program to reduce turnover rates by ensuring new hires feel welcomed and informed.

    • Utilizing data analytics to identify trends in employee performance and engagement, leading to targeted training programs.

    • Enhancing the employee referral program to increase the quality...

  • Answered by AI

Top trending discussions

View All
Interview Hub
1w
a client servicing executive
FeedCard Image
Got a question about DeHaat?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions are about fresh department only

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know about fresh department

Assistant Manager- HR Interview Questions Asked at Other Companies

Q1. how to maintain manpower data and what are the activities are the ... read more
Q2. What percentage of the total investment is allocated to manpower ... read more
asked in Genpact
Q3. What is the meaning of HR? Human resource is the division of busi ... read more
Q4. Are you comfortable hiring for an automation company? What are th ... read more
Q5. Which tools are you familiar with and have experience using in th ... read more

I applied via Approached by Company and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

My work experience and my knowledge

Interview Preparation Tips

Topics to prepare for Udaan Sales Executive interview:
  • Hard-work
  • Self confidence
  • Punchualty
  • customer support
  • Computer operator
Interview preparation tips for other job seekers - Only experience person and very hardworking person and honest and punchal

I applied via Naukri.com and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Work experience
  • Ans. 

    I have over five years of experience in sales, focusing on building relationships and driving revenue growth in competitive markets.

    • Developed and maintained relationships with key clients, resulting in a 30% increase in repeat business.

    • Consistently exceeded sales targets by an average of 20% through strategic planning and effective negotiation.

    • Led a team of sales representatives, providing training and mentorship that ...

  • Answered by AI
  • Q2. R u comfertable traveling
  • Q3. What is your study status
  • Ans. 

    I hold a Bachelor's degree in Business Administration, specializing in Marketing, which has equipped me with essential sales skills.

    • Bachelor's degree in Business Administration from XYZ University.

    • Specialized in Marketing, focusing on consumer behavior and sales strategies.

    • Completed internships at ABC Company, where I developed practical sales techniques.

    • Participated in various sales workshops and seminars to enhance m...

  • Answered by AI
  • Q4. Graduate
  • Q5. Can u join immediatly
  • Q6. Will you able to sell product by showing them on thier phone screen on the app
  • Ans. 

    Yes, I can effectively sell products by showcasing them on the app via phone screens, enhancing customer engagement.

    • Utilize high-quality visuals to capture attention, such as vibrant images or videos of the product.

    • Engage customers by demonstrating features directly on the app, like showing how to navigate or use the product.

    • Leverage customer testimonials or reviews within the app to build trust and credibility.

    • Offer p...

  • Answered by AI
  • Q7. This is something new,but India is going through digitalisation,so ofcourse that wouldnt be that problem.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good,i got selected,after two days i got a cl bck,and on 3 days i did my joining procedure

I applied via Recruitment Consultant and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yours self? last experience
  • Ans. 

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

    • Developed and executed sales strategies that increased revenue by 30% in my last role at Tech Solutions.

    • Managed a portfolio of over 50 clients, ensuring high levels of customer satisfaction and retention.

    • Collaborated with marketing teams to create targeted campaigns that resulted in a 25% ...

  • Answered by AI
  • Q2. Do you know meesho
  • Ans. 

    Meesho is an Indian social commerce platform enabling small businesses and individuals to sell products online through social media.

    • Founded in 2015, Meesho allows users to start their own online store without any investment.

    • It primarily targets resellers, enabling them to sell products via platforms like WhatsApp and Facebook.

    • Meesho offers a wide range of products, including clothing, accessories, and home goods.

    • The pl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - BE COMfortable and confidence ...

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

3 coding questions and 20 mcq's

  • Q1. 

    Maximum Sum of Two Non-Overlapping Subarrays

    Given an integer array ARR and a positive integer K, your task is to determine two non-overlapping subarrays of length K that yield the maximum combined sum.

    ...

  • Ans. 

    The task is to find two non-overlapping subarrays of length K in an array, such that their sum is maximum.

    • Iterate through the array and calculate the sum of each subarray of length K

    • Store the maximum sum obtained from the first subarray

    • Iterate again and calculate the sum of each subarray of length K, excluding the previous subarray

    • Store the maximum sum obtained from the second subarray

    • Return the sum of the two maximum ...

  • Answered by AI
  • Q2. 

    Distinct Subsequences Problem Statement

    You are given a string 'S' of length 'N' which may include duplicate alphabets. Your goal is to calculate the number of distinct subsequences in the string.

    Exampl...

  • Ans. 

    The task is to find the count of distinct subsequences in a given string.

    • Use dynamic programming to solve the problem.

    • Create a 2D array to store the count of distinct subsequences for each prefix of the string.

    • Initialize the first row of the array with 1, as there is only one subsequence of an empty string.

    • For each character in the string, calculate the count of distinct subsequences by considering two cases: including...

  • Answered by AI
  • Q3. 

    Array Intersection Problem Statement

    Given two integer arrays/ lists ARR1 and ARR2 of sizes N and M respectively, you are required to determine their intersection. An intersection is defined as the set of...

  • Ans. 

    The task is to find the intersection of two integer arrays/lists.

    • Read the number of test cases

    • For each test case, read the size and elements of the first array/list

    • Read the size and elements of the second array/list

    • Find the intersection of the two arrays/lists

    • Print the intersection elements in the order they appear in the first array/list

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

Online video call based round, Timing was 10-11 AM
Interview started with basic greetings, post that i explained by projects in brief and then we jumped right into dsa questoins.

  • Q1. 

    Number of Islands Problem Statement

    You are given a non-empty grid that consists of only 0s and 1s. Your task is to determine the number of islands in this grid.

    An island is defined as a group of 1s (re...

  • Ans. 

    The task is to find the number of islands in a grid consisting of 0s and 1s.

    • An island is a group of 1s connected horizontally, vertically, or diagonally

    • The grid is surrounded by 0s on all four edges

    • Use a depth-first search (DFS) or breadth-first search (BFS) algorithm to traverse the grid and count the number of islands

    • Initialize a visited array to keep track of visited cells

    • For each unvisited cell with a value of 1, p...

  • Answered by AI
  • Q2. 

    Arrangement Problem Statement

    Determine the number of permutations of list A = [1, 2, ..., N] such that for every index i, either A[i] is divisible by i or i is divisible by A[i].

    Input:

    The input start...
  • Ans. 

    The goal is to find the number of permutations of a list satisfying certain conditions.

    • Iterate through all permutations of the list

    • Check if each permutation satisfies the given conditions

    • Count the number of permutations that satisfy the conditions

    • Return the count for each test case

  • Answered by AI
  • Q3. 

    Idempotent Matrix Verification

    Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:

    M * M = M

    Input:

    The first line cont...
  • Ans. 

    An idempotent matrix is a square matrix that remains unchanged when multiplied by itself.

    • Check if the given matrix satisfies the property M*M = M

    • Iterate through each element of the matrix and perform the matrix multiplication

    • Compare the result with the original matrix

    • If they are equal, return true; otherwise, return false

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

This was EM round, started with me explaining my projects in deep and facing some counter questions on that, proceeded to os, dbms basic questions and some low level designing and lastly a puzzle to end interview.

  • Q1. Can you design an attendance management system?
  • Ans. 

    Design attendance management system

    • Create a database to store employee information

    • Implement a user interface for employees to mark their attendance

    • Develop a system to track and record attendance data

    • Generate reports and analytics based on attendance data

  • Answered by AI
Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

This was formality round, HR came and explained what meesho does and told my joining dates and compensation details.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaMeesho interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, DBMS, Dynamic Programming, Low level designTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Do medium level queustions
Tip 2 : Learn basic system design for startup interviews.

Application resume tips for other job seekers

Tip 1 : Put things on your resume that you know by your heart, otherwise will have a lot of difficulty in the HM round.
Tip 2 : Do not mention co-curricular activities on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

DeHaat HR Interview Questions

4 questions and answers

Q. Tell me about your experience at your previous company.
Q. Introduce yourself in 10 minutes.
Q. Why did you choose your major?

I applied via Walk-in and was interviewed before Jun 2021. 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 - Technical 

(7 Questions)

  • Q1. Good management &good leaning Market
  • Q2. Good work enivimont good jobs
  • Q3. Very nice job good working and
  • Q4. Good management &good job
  • Q5. Good management good work
  • Q6. Very nice job and jobs
  • Q7. Good jobs and very nice
Round 3 - One-on-one 

(4 Questions)

  • Q1. Good jobs and very nice jobs
  • Q2. Very jobs nice working
  • Q3. Good good job nice job
  • Q4. Nice job good jobs g

Interview Preparation Tips

Interview preparation tips for other job seekers - Some time not sticks in good jobs and
Are these interview questions helpful?

I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Sales ke bare mein
  • Q2. Customer ke pass jakar on road in karna
  • Q3. Company ke bare mein batana

Interview Preparation Tips

Interview preparation tips for other job seekers - Anytime interviews

I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Y r u choosing this job only??
  • Q2. What's your dream?
  • Ans. 

    My dream is to create innovative software solutions that positively impact people's lives and drive technological advancement.

    • Building User-Centric Applications: I aspire to develop applications that prioritize user experience, like a health tracking app that motivates users to lead healthier lives.

    • Contributing to Open Source: I dream of contributing to open-source projects, collaborating with developers worldwide to c...

  • Answered by AI
  • Q3. My dream is to got a job
  • Q4. How much salary will you expected??

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is to be positive at any situation and be active .
Don't get feared .
Your dressing is shown ur attitude.
Give respect to the others don't forget these things.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. Short even and odd place for negative and positive elements
  • Ans. 

    Rearranging an array to place negative and positive numbers at even and odd indices respectively.

    • 1. Iterate through the array and separate positive and negative numbers.

    • 2. Create a new array of the same length to hold the rearranged elements.

    • 3. Place negative numbers at even indices (0, 2, 4,...) and positive numbers at odd indices (1, 3, 5,...).

    • 4. If there are more positives than negatives, fill remaining odd indices ...

  • Answered by AI
  • Q2. Find second highest salary

DeHaat Interview FAQs

How to prepare for DeHaat Assistant Manager- HR interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at DeHaat. The most common topics and skills that interviewers at DeHaat expect are Bulk Hiring, Business Partnering, Campus Hiring, Talent Acquisition and Talent Sourcing.
What are the top questions asked in DeHaat Assistant Manager- HR interview?

Some of the top questions asked at the DeHaat Assistant Manager- HR interview -

  1. What are some examples of how you would influence key metrics in ...read more
  2. What are the key impact areas for HR and the associated key performance indicat...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more

DeHaat Assistant Manager- HR Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

5.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
109 salaries
unlock blur

₹4 L/yr - ₹9.2 L/yr

Senior Executive
72 salaries
unlock blur

₹3.4 L/yr - ₹7.2 L/yr

Manager
46 salaries
unlock blur

₹8.8 L/yr - ₹14.9 L/yr

Sales Executive
43 salaries
unlock blur

₹2.5 L/yr - ₹4.8 L/yr

Management Trainee
39 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.8
Compare
write
Share an Interview