Upload Button Icon Add office photos

99acres

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

99acres Deputy Manager Interview Questions and Answers

Updated 29 Nov 2023

99acres Deputy Manager Interview Experiences

1 interview found

Deputy Manager Interview Questions & Answers

user image Aasim Anis

posted on 29 Nov 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 4 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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. About my experience & personal life.
Round 3 - One-on-one 

(1 Question)

  • Q1. About my past experience & how will I manage Jaipur market.
Round 4 - One-on-one 

(1 Question)

  • Q1. Final round with same questions.

Interview questions from similar companies

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

(2 Questions)

  • Q1. SQL on joins , partition, rank dense rank
  • Q2. Case study on guestimation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About Work Experience
  • Q2. Team Handling Achievement
  • Ans. 

    Successfully led a team of 15 members to exceed quarterly sales targets by 20%.

    • Implemented weekly team meetings to track progress and address any challenges.

    • Provided regular feedback and coaching to team members to improve performance.

    • Recognized top performers with incentives to motivate the team.

    • Collaborated with other departments to streamline processes and improve efficiency.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Was asked to profile companies

Round 2 - One-on-one 

(1 Question)

  • Q1. How will you approach a market research problem
  • Ans. 

    I will approach a market research problem by first defining the objectives, conducting thorough research, analyzing data, and presenting actionable insights.

    • Define the research objectives clearly to ensure focus

    • Conduct thorough research using a mix of qualitative and quantitative methods

    • Analyze the data collected to identify trends, patterns, and insights

    • Present actionable recommendations based on the findings

    • Stay upda

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

SQL based leetcode medium and hackerrank

Round 2 - Assignment 

Python take home EDA case study assessment

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

(2 Questions)

  • Q1. Search in 2d matrix
  • Ans. 

    Search for a target value in a 2D matrix efficiently.

    • Use binary search on rows to find the potential row where the target value may exist.

    • Then use binary search on that row to find the target value.

  • Answered by AI
  • Q2. Find quadraplets that sum to target
  • Ans. 

    Find quadraplets in an array that sum up to a target value.

    • Use a nested loop to iterate through all possible combinations of quadraplets.

    • Keep track of the sum of each quadraplet and compare it to the target value.

    • Return the quadraplets that match the target sum.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Nth Greatest Element III (Leetcode)
  • Ans. 

    Find the Nth greatest element in an array without sorting

    • Use a priority queue to keep track of the N greatest elements

    • Iterate through the array and add elements to the priority queue

    • Return the top element from the priority queue as the Nth greatest element

  • Answered by AI
  • Q2. Heater Problem (Leetcode)
  • Ans. 

    Heater Problem - Find minimum radius to cover all houses with heaters

    • Sort the houses and heaters arrays

    • For each house, find the closest heater using binary search

    • Calculate the minimum radius needed to cover all houses

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL based questions
  • Q2. Guesstimate on estimating # users on the application
  • Ans. 

    Estimate the number of users on the application based on market research, user demographics, and industry trends.

    • Consider the total addressable market (TAM) for the application

    • Analyze user demographics and behavior to estimate adoption rate

    • Look at industry benchmarks and competitor data for reference

    • Use surveys, focus groups, and user feedback to gather insights

    • Consider factors like market saturation, growth potential,

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy coding questions

Round 2 - Aptitude Test 

Tough level questions , needed high level of thinking

Interview Preparation Tips

Interview preparation tips for other job seekers - practise apti in a solid manner

I was interviewed in Jan 2016.

Interview Questionnaire 

8 Questions

  • Q1. Find right veiw of a binary tree
  • Ans. 

    To find the right view of a binary tree, we need to traverse the tree and keep track of the rightmost node at each level.

    • Traverse the tree using level order traversal

    • At each level, keep track of the rightmost node

    • Add the rightmost node to the result array

    • Return the result array

  • Answered by AI
  • Q2. Find two missing number from a given array ,without sorting and o(n)
  • Ans. 

    Find two missing numbers from an unsorted array in O(n) time complexity.

    • Calculate the sum of all numbers from 1 to n using the formula n*(n+1)/2

    • Calculate the sum of all numbers in the given array

    • Subtract the sum of array from the sum of all numbers to get the sum of missing numbers

    • Use the sum of missing numbers and the sum of squares of all numbers from 1 to n to calculate the missing numbers using simultaneous equatio

  • Answered by AI
  • Q3. This round based on project
  • Q4. Normal HR question
  • Q5. Find ave salary without disclosing any one salary
  • Ans. 

    To find average salary without disclosing any one salary

    • Collect salaries of all employees

    • Add all salaries and divide by total number of employees

    • Do not disclose any individual salary

  • Answered by AI
  • Q6. One golden bricks n divide it to min number of part so that u can pay each day salary to a worker
  • Ans. 

    Divide a golden brick into minimum parts to pay daily salary to a worker.

    • The number of parts needed will depend on the daily salary of the worker.

    • The size of the parts should be equal.

    • The parts should be small enough to cover the daily salary but large enough to minimize the number of parts.

    • The formula to calculate the number of parts is: number of parts = total value of the golden brick / daily salary

  • Answered by AI
  • Q7. One goat and 100 lion puzzles
  • Q8. Make 4 equal shape part of a cake if u cut 1/4 part already

Interview Preparation Tips

Round: Test
Experience: do atleast 2-3 code

Round: Technical Interview
Experience: its an easy round for me

Round: Puzzle Interview
Experience: i cant two of puzzles ,but selected for next round
Tips: prepare puzzles

Round: Technical Interview
Tips: prepare project and explain every small things to the interviewer

Skills: ds, algo, dbms, os, networking, they required all you should have good knowledge of all these subject
College Name: NIT Bhopal
Motivation: very good work culture and they give 7.04 LPA in hand and other perk

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

99acres Interview FAQs

How many rounds are there in 99acres Deputy Manager interview?
99acres interview process usually has 4 rounds. The most common rounds in the 99acres interview process are One-on-one Round, Resume Shortlist and HR.

Recently Viewed

INTERVIEWS

BitGo

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

Precision Electronics

No Interviews

INTERVIEWS

99acres

No Interviews

INTERVIEWS

Gemini Communication

No Interviews

INTERVIEWS

BitGo

No Interviews

INTERVIEWS

BitGo

No Interviews

INTERVIEWS

99acres

No Interviews

DESIGNATION

LIST OF COMPANIES

99acres

Locations

Tell us how to improve this page.

99acres Deputy Manager Interview Process

based on 3 interviews

Interview experience

2.3
  
Poor
View more

Interview Questions from Similar Companies

Tracxn Interview Questions
3.1
 • 100 Interviews
InvestoXpert Interview Questions
4.5
 • 62 Interviews
MagicBricks Interview Questions
3.4
 • 57 Interviews
Zolo Interview Questions
3.4
 • 49 Interviews
GoMechanic Interview Questions
3.7
 • 48 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Carwale Interview Questions
3.4
 • 41 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Impact Guru Interview Questions
4.4
 • 37 Interviews
Dream11 Interview Questions
3.8
 • 36 Interviews
View all
99acres Deputy Manager Salary
based on 59 salaries
₹5 L/yr - ₹11.5 L/yr
10% less than the average Deputy Manager Salary in India
View more details

99acres Deputy Manager Reviews and Ratings

based on 18 reviews

4.4/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

3.6

Salary

4.0

Job security

4.2

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 18 Reviews and Ratings
Assistant Manager
98 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
82 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
59 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Senior Executive
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager- Corporate Sales
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare 99acres with

MagicBricks

3.4
Compare

Impact Guru

4.0
Compare

Netmeds.com

3.6
Compare

Tracxn

3.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent