Upload Button Icon Add office photos

Housing.com

Compare button icon Compare button icon Compare

Filter interviews by

Housing.com Interview Questions and Answers

Updated 14 May 2025
Popular Designations

104 Interview questions

A Senior Accounts Manager was asked 3mo ago
Q. What is B2B?
Ans. 

B2B, or business-to-business, refers to transactions between businesses, often involving wholesale or service providers.

  • B2B transactions typically involve larger quantities of goods or services.

  • Examples include manufacturers selling to wholesalers or retailers.

  • B2B companies often provide specialized services, like software solutions for other businesses.

  • The B2B market is generally characterized by longer sales cyc...

View all Senior Accounts Manager interview questions
A Senior Accounts Manager was asked 3mo ago
Q. Describe a scenario where you faced difficulty managing a client.
Ans. 

Faced a challenging client situation due to miscommunication, resolved it through proactive engagement and tailored solutions.

  • Identified the issue: A client was unhappy due to a misunderstanding about deliverables.

  • Engaged directly: Scheduled a meeting to discuss their concerns and expectations.

  • Clarified deliverables: Presented a detailed plan outlining what we could provide and timelines.

  • Tailored solutions: Offere...

View all Senior Accounts Manager interview questions
A Software Developer was asked 5mo ago
Q. Given a rotated sorted array, how can you search for a target value efficiently using the binary search algorithm?
Ans. 

Use binary search algorithm with slight modifications to handle rotated sorted array efficiently.

  • Find the pivot point where the array is rotated.

  • Determine which half of the array the target value lies in based on the pivot point.

  • Perform binary search on the appropriate half of the array.

View all Software Developer interview questions
A Senior Software Engineer was asked 8mo ago
Q. Implement a generic map method.
Ans. 

Implement a generics method map in Java

  • Create a generic method that takes an array and a function as parameters

  • Use a lambda expression to apply the function to each element in the array

  • Return a new array with the transformed elements

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 8mo ago
Q. Discuss the differences between strong and weak references.
Ans. 

Strong references prevent objects from being deallocated, while weak references allow for deallocation, avoiding memory leaks.

  • Strong Reference: Keeps an object in memory; e.g., 'let strongRef = someObject'.

  • Weak Reference: Does not keep an object in memory; e.g., 'weak var weakRef = someObject'.

  • Use Cases: Strong references are used for ownership, while weak references are used to avoid retain cycles.

  • Example of Reta...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 8mo ago
Q. How do you implement inheritance using prototypes?
Ans. 

Inheritance with prototypes allows objects to inherit properties and methods from other objects in JavaScript.

  • Create a constructor function for the parent object

  • Add properties and methods to the parent object's prototype

  • Create a constructor function for the child object

  • Set the child object's prototype to be an instance of the parent object

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 8mo ago
Q. Explain closure in JavaScript.
Ans. 

Closure in JS is when a function is able to remember and access its lexical scope even when it is executed outside that scope.

  • Closure allows a function to access variables from its outer function even after the outer function has finished executing.

  • Functions in JavaScript form closures, which means they 'remember' the variables in the scope where they were created.

  • Closures are commonly used in event handlers, call...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Software Development Engineer was asked 8mo ago
Q. Design a calculator using OOP principles.
Ans. 

Design a calculator using OOP principles, focusing on classes, methods, and encapsulation.

  • Create a base class 'Calculator' with basic operations: add, subtract, multiply, divide.

  • Use inheritance to create specialized calculators, e.g., 'ScientificCalculator' for advanced functions like sin, cos.

  • Implement encapsulation by keeping internal state private and providing public methods for interaction.

  • Consider using inte...

View all Software Development Engineer interview questions
A Software Development Engineer was asked 8mo ago
Q. Design a Heap data structure.
Ans. 

Design a heap tree data structure

  • A heap is a complete binary tree where the value of each node is greater than or equal to the values of its children

  • There are two types of heaps: min heap (parent node is smaller than children) and max heap (parent node is larger than children)

  • Heap can be implemented using arrays where parent node at index i has children at indices 2i+1 and 2i+2

View all Software Development Engineer interview questions
A QA Engineer was asked 10mo ago
Q. What is QA testing?
Ans. 

QA testing ensures software quality through systematic evaluation, identifying defects, and verifying functionality against requirements.

  • QA testing involves various methodologies like manual testing, automated testing, and performance testing.

  • Example: Manual testing involves testers executing test cases without automation tools.

  • Automated testing uses scripts and tools to execute tests, improving efficiency and cov...

View all QA Engineer interview questions

Housing.com Interview Experiences

72 interviews found

Interview Questionnaire 

8 Questions

  • Q1. Input: “kitten%20pic.jpg” output: “kitten pic.jpg” %20 -> ‘ ‘ %3A -> ‘?’ %3D -> ‘:’ modify your input in place. no string library functions. void DecodeURL(string str
  • Ans. 

    The function decodes a URL-encoded string by replacing specific characters with their corresponding symbols.

    • Iterate through each character in the input string

    • If the character is '%', check the next two characters to determine the replacement symbol

    • Replace the '%XX' sequence with the corresponding symbol

    • Continue until all occurrences of '%XX' are replaced

  • Answered by AI
  • Q2. Given an array, return true, if it can be partitioned into two subarrays whose sum of elements are same, else return false Example: Input: {5,1,5,11} Output: true (as it can be divided into {5,1,5} {11} wh...
  • Ans. 

    Check if an array can be partitioned into two subarrays with equal sum.

    • Iterate through the array and calculate the total sum of all elements.

    • If the sum is odd, return false as it cannot be divided into two equal parts.

    • If the sum is even, try to find a subset with sum equal to half of the total sum.

    • Use dynamic programming or backtracking to find the subset sum.

  • Answered by AI
  • Q3. Briefly discussed about projects in resume and questions were completely related to projects mentioned
  • Q4. Find out the maximum contiguous circular sum in array, array may contain positive as well as negative numbers?
  • Ans. 

    The maximum contiguous circular sum in an array is the maximum sum that can be obtained by wrapping the array around in a circular manner.

    • To find the maximum contiguous circular sum, we can use Kadane's algorithm twice.

    • First, we find the maximum sum using Kadane's algorithm for the non-circular array.

    • Then, we find the maximum sum using Kadane's algorithm for the circular array by subtracting the minimum sum subarray fr...

  • Answered by AI
  • Q5. Given a binary tree, print sum of each level ?
  • Ans. 

    Given a binary tree, print sum of each level

    • Use a breadth-first search (BFS) algorithm to traverse the tree level by level

    • Keep track of the sum of each level using a separate variable for each level

    • Print the sum of each level after traversing the entire tree

  • Answered by AI
  • Q6. Add two integers which cannot be stored even in long long int?
  • Ans. 

    It is not possible to add two integers that cannot be stored even in long long int.

    • The maximum value that can be stored in long long int is 9,223,372,036,854,775,807.

    • Any two integers whose sum exceeds this value cannot be stored in long long int.

    • In such cases, a different data type or approach is required to handle the large numbers.

  • Answered by AI
  • Q7. Length of longest substring with no repeating character (Full running code)?
  • Ans. 

    Find the length of the longest substring without any repeating characters.

    • Use a sliding window approach to iterate through the string.

    • Keep track of the characters seen so far using a set.

    • Update the maximum length of the substring whenever a repeating character is encountered.

  • Answered by AI
  • Q8. There is a function getWord() which takes word as input and checks whether word is present in the dictionary. Given a long word as input find all the meaning full ( i.e getWord() is true ) that can be made...
  • Ans. 

    Find all meaningful words from a given input using a dictionary check.

    • Use a recursive approach to generate all possible substrings.

    • Check each substring with getWord() to verify if it's a valid word.

    • Example: For 'antin', valid words include 'a', 'an', 'ant', 'tin', 'in'.

    • Consider using a set to avoid duplicate entries in the result.

  • Answered by AI

Interview Preparation Tips

General Tips: If all goes well, you can expect the offer letter in a day or two. The pay would mostly align with what your expected salary was. Mine did. But I wouldn’t say it depends on the number of years of experience you have. People with less experience do get better offers. I did. In case you are still not satisfied with the offer, you can discuss with the HR and see if it could be reconsidered.
Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

Senior Executive Interview Questions & Answers

user image Rupa Kumari

posted on 14 Feb 2025

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

(2 Questions)

  • Q1. About yourself and company
  • Q2. About the company and process
Round 2 - One-on-one 

(1 Question)

  • Q1. Explained about housing
Round 3 - One-on-one 

(1 Question)

  • Q1. About the Housing.com

Software Developer Interview Questions & Answers

user image Kashish Babbar

posted on 16 Jan 2025

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

(2 Questions)

  • Q1. Given a rotated sorted array, how can you search for a target value efficiently using the binary search algorithm?
  • Ans. 

    Use binary search algorithm with slight modifications to handle rotated sorted array efficiently.

    • Find the pivot point where the array is rotated.

    • Determine which half of the array the target value lies in based on the pivot point.

    • Perform binary search on the appropriate half of the array.

  • Answered by AI
  • Q2. Other questions on indexing and other stuff
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Aptitude plus 2 basic DSA

Round 2 - One-on-one 

(2 Questions)

  • Q1. DSA (binary tree traversal)
  • Q2. DSA (array questions)
Round 3 - One-on-one 

(2 Questions)

  • Q1. OOPs( design calculator)
  • Ans. 

    Design a calculator using OOP principles, focusing on classes, methods, and encapsulation.

    • Create a base class 'Calculator' with basic operations: add, subtract, multiply, divide.

    • Use inheritance to create specialized calculators, e.g., 'ScientificCalculator' for advanced functions like sin, cos.

    • Implement encapsulation by keeping internal state private and providing public methods for interaction.

    • Consider using interface...

  • Answered by AI
  • Q2. Design Heap( tree)
  • Ans. 

    Design a heap tree data structure

    • A heap is a complete binary tree where the value of each node is greater than or equal to the values of its children

    • There are two types of heaps: min heap (parent node is smaller than children) and max heap (parent node is larger than children)

    • Heap can be implemented using arrays where parent node at index i has children at indices 2i+1 and 2i+2

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Discussion on strong and weak reference
  • Ans. 

    Strong references prevent objects from being deallocated, while weak references allow for deallocation, avoiding memory leaks.

    • Strong Reference: Keeps an object in memory; e.g., 'let strongRef = someObject'.

    • Weak Reference: Does not keep an object in memory; e.g., 'weak var weakRef = someObject'.

    • Use Cases: Strong references are used for ownership, while weak references are used to avoid retain cycles.

    • Example of Retain Cy...

  • Answered by AI
  • Q2. Generics method map implementation
  • Ans. 

    Implement a generics method map in Java

    • Create a generic method that takes an array and a function as parameters

    • Use a lambda expression to apply the function to each element in the array

    • Return a new array with the transformed elements

  • Answered by AI
Round 2 - Coding Test 

Duration 1 hr

1. reverse of link list
2. find link list is circular or not

Interview Preparation Tips

Interview preparation tips for other job seekers - Core concept should be good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How to do inheritance with prototypes
  • Ans. 

    Inheritance with prototypes allows objects to inherit properties and methods from other objects in JavaScript.

    • Create a constructor function for the parent object

    • Add properties and methods to the parent object's prototype

    • Create a constructor function for the child object

    • Set the child object's prototype to be an instance of the parent object

  • Answered by AI
  • Q2. Explain closure in JS
  • Ans. 

    Closure in JS is when a function is able to remember and access its lexical scope even when it is executed outside that scope.

    • Closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • Functions in JavaScript form closures, which means they 'remember' the variables in the scope where they were created.

    • Closures are commonly used in event handlers, callbacks...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Didnt give interview yet
  • Q2. Didnt give interview yet.

Interview Preparation Tips

Interview preparation tips for other job seekers - didnt give intreview yet

Training Manager Interview Questions & Answers

user image Ashique Ellahe

posted on 6 Jul 2024

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

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About previous profile and about tools you know and you overall experience
  • Q2. It was a general discussion
Round 2 - Assignment 

Asked to prepare a PPT on Impact of Digital marketing on Real estate

Round 3 - HR 

(1 Question)

  • Q1. In this they asked about relocation part and it was just a general duscussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Accounts Manager with a strong background in financial reporting and team leadership, dedicated to driving efficiency and accuracy.

    • Over 7 years of experience in accounts management, overseeing financial operations for a mid-sized company.

    • Successfully implemented a new accounting software that reduced reporting time by 30%.

    • Led a team of 5 accountants, fostering a collaborative environment that improved team ...

  • Answered by AI
  • Q2. About previous experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Last ctc about sk
  • Ans. 

    The candidate is being asked about their last drawn salary package.

    • Be honest and provide the exact figure of your last drawn CTC.

    • Explain any additional benefits or perks included in the CTC.

    • Mention any bonuses or incentives received on top of the CTC.

    • Discuss any salary negotiations or increments during your tenure.

    • Avoid exaggerating or understating your last CTC.

  • Answered by AI
  • Q2. Why are you leaving current organization
  • Ans. 

    I'm seeking new challenges and opportunities for growth that my current organization cannot provide at this time.

    • Desire for professional growth: I want to expand my skills in a more dynamic environment.

    • Limited advancement opportunities: My current role has no clear path for promotion.

    • Seeking a better cultural fit: I'm looking for a workplace that aligns more closely with my values.

    • Interest in new challenges: I'm eager ...

  • Answered by AI

City Head Interview Questions & Answers

user image Anonymous

posted on 30 Apr 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Related to my exisitng role, went well
Round 2 - One-on-one 

(1 Question)

  • Q1. On the name of interview, interviewer discussed about housing more and did not ask about my work ex, challenges, roles & responsibilities. I did not felt it like an interview. I think made his mind in his ...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2023. 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 - One-on-one 

(5 Questions)

  • Q1. How u gonna meet 7 people in a fay
  • Q2. Will u be okay with traveling
  • Q3. 222hjjcjkbvhknbvcxx
  • Q4. Ogguoxyocivixygucyg GCx
  • Q5. Lhcukzykcuxyofixlyc

Top trending discussions

View All
Interview Tips & Stories
4d (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 Housing.com?
Ask anonymously on communities.

Housing.com Interview FAQs

How many rounds are there in Housing.com interview?
Housing.com interview process usually has 2-3 rounds. The most common rounds in the Housing.com interview process are One-on-one Round, HR and Resume Shortlist.
How to prepare for Housing.com 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 Housing.com. The most common topics and skills that interviewers at Housing.com expect are Field Sales, B2B Sales, Real Estate Sales, Direct Sales and Transaction Services.
What are the top questions asked in Housing.com interview?

Some of the top questions asked at the Housing.com interview -

  1. Given a string (say alpha) and a dictionary database from where I can find if a...read more
  2. Given two sides of a river having the same cities labeled in characters. Bridge...read more
  3. How will you kill all java process in one comman...read more
How long is the Housing.com interview process?

The duration of Housing.com interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 43 interview experiences

Difficulty level

Easy 5%
Moderate 89%
Hard 5%

Duration

Less than 2 weeks 72%
2-4 weeks 17%
6-8 weeks 6%
More than 8 weeks 6%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 474 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 230 Interviews
Myntra Interview Questions
3.9
 • 229 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
FirstCry Interview Questions
3.6
 • 187 Interviews
Tata 1mg Interview Questions
3.6
 • 186 Interviews
Spinny Interview Questions
3.7
 • 184 Interviews
View all

Housing.com Reviews and Ratings

based on 613 reviews

3.7/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

4.0

Salary

3.3

Job security

3.8

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 613 Reviews and Ratings
Account Manager - Broker Acquisition | Field Sales

Gurgaon / Gurugram

2-7 Yrs

₹ 5-8.5 LPA

Explore more jobs
Senior Accounts Manager
381 salaries
unlock blur

₹5.4 L/yr - ₹12.5 L/yr

Accounts Manager
225 salaries
unlock blur

₹4.5 L/yr - ₹8.8 L/yr

Team Manager
75 salaries
unlock blur

₹8.6 L/yr - ₹16 L/yr

Software Development Engineer
68 salaries
unlock blur

₹15 L/yr - ₹27.1 L/yr

Senior Manager
45 salaries
unlock blur

₹8.3 L/yr - ₹13.1 L/yr

Explore more salaries
Compare Housing.com with

MagicBricks

4.2
Compare

NoBroker

3.1
Compare

Udaan

3.9
Compare

Swiggy

3.7
Compare
write
Share an Interview