Upload Button Icon Add office photos

Housing.com

Compare button icon Compare button icon Compare

Filter interviews by

Housing.com Interview Questions, Process, and Tips

Updated 14 Feb 2025

Top Housing.com Interview Questions and Answers

  • Q1. Given two sides of a river having the same cities labeled in characters. Bridges are to be drawn from one side to another that can connect the same labels but the bridges ...read more
    asked in Software Engineer interview
  • Q2. Maximum Level Sum Problem Statement Given a binary tree with integer nodes, your task is to determine the maximum level sum among all the levels in the binary tree. The ...read more
    asked in Software Developer interview
  • Q3. Pair Sum Problem Statement You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where eac ...read more
    asked in Front end Engineer interview
View all 94 questions

Housing.com Interview Experiences

Popular Designations

70 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} where 5+1+5=11)
  • 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...

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

Top Housing.com Software Developer Interview Questions and Answers

Q1. Maximum Level Sum Problem Statement Given a binary tree with integer nodes, your task is to determine the maximum level sum among all the levels in the binary tree. The sum at any level is the sum of all nodes that are present at that level... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Senior Executive Interview Questions & Answers

user image Rupa Kumari

posted on 14 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Senior Executive Interview Questions asked at other Companies

Q1. If oneday the men power is very less due to some problem and lode is more that day as a senior Exucative, how will u handle your team ?
View answer (56)
Housing.com Interview Questions and Answers for Freshers
illustration image

Software Developer Interview Questions & Answers

user image Kashish Babbar

posted on 16 Jan 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

Top Housing.com Software Developer Interview Questions and Answers

Q1. Maximum Level Sum Problem Statement Given a binary tree with integer nodes, your task is to determine the maximum level sum among all the levels in the binary tree. The sum at any level is the sum of all nodes that are present at that level... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Housing.com interview questions for popular designations

 Accounts Manager

 (9)

 Software Developer

 (8)

 Software Engineer

 (6)

 Associate Product Manager

 (3)

 Senior Accounts Manager

 (3)

 Front end Engineer

 (2)

 Senior Software Engineer

 (2)

 Software Development Engineer

 (2)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Interview Preparation Tips

Interview preparation tips for other job seekers - Core concept should be good

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Get interview-ready with Top Housing.com Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Jobs at Housing.com

View all
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.

Interview Preparation Tips

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

Top Housing.com Software Developer Interview Questions and Answers

Q1. Maximum Level Sum Problem Statement Given a binary tree with integer nodes, your task is to determine the maximum level sum among all the levels in the binary tree. The sum at any level is the sum of all nodes that are present at that level... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

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.

Training Manager Interview Questions asked at other Companies

Q1. How can a reduction be done in the time taken for trainees to achieve the targets set as per the BAU?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Accounts Manager Interview Questions asked at other Companies

Q1. Tell me an analysis about how to factor customer or prospects for your product segment
View answer (5)

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.

City Head Interview Questions asked at other Companies

Q1. Suppose there are multiple orders of flat tyres in your city at same time, how will you manage your supply?
View answer (1)
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.

Sales Executive Interview Questions asked at other Companies

Q1. Do you know what is selling and how you can sell it?
View answer (51)
Contribute & help others!
anonymous
You can choose to be anonymous

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 B2B Sales, Field Sales, Real Estate Sales, Transaction Services and Client Acquisition.
What are the top questions asked in Housing.com interview?

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

  1. Given two sides of a river having the same cities labeled in characters. Bridge...read more
  2. How will you kill all java process in one comman...read more
  3. Given a square area of 1024x1024 on a map with some flats (housing mentality :P...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.

Recently Viewed

INTERVIEWS

Jashanmal National Company

No Interviews

INTERVIEWS

GETIT Infoservices

No Interviews

INTERVIEWS

Housing.com

No Interviews

INTERVIEWS

Bhawar Sales Corporation

No Interviews

INTERVIEWS

Flemingo Duty Free Shop

No Interviews

REVIEWS

Tata 1mg

No Reviews

REVIEWS

Tracxn

No Reviews

INTERVIEWS

Jade Blue Lifestyle

No Interviews

INTERVIEWS

Venture Supply Chain

No Interviews

INTERVIEWS

Techno Kart India

No Interviews

Tell us how to improve this page.

Housing.com Interview Process

based on 41 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 426 Interviews
NoBroker Interview Questions
3.2
 • 234 Interviews
Square Yards Interview Questions
3.8
 • 198 Interviews
MagicBricks Interview Questions
3.4
 • 57 Interviews
99acres Interview Questions
3.9
 • 28 Interviews
PropTiger.com Interview Questions
4.0
 • 23 Interviews
Nestaway Interview Questions
3.9
 • 17 Interviews
CommonFloor Interview Questions
3.7
 • 3 Interviews
Quikr Realty Interview Questions
3.9
 • 1 Interview
Makaan.com Interview Questions
3.8
 • 1 Interview
View all

Housing.com Reviews and Ratings

based on 548 reviews

3.7/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

4.0

Salary

3.2

Job security

3.8

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 548 Reviews and Ratings
PropTiger.com - Hiring For Sales Role Currently

Bangalore / Bengaluru

1-6 Yrs

₹ 3.5-7.5 LPA

Account Manager - Broker Acquisition | Field Sales

Gurgaon / Gurugram

3-7 Yrs

₹ 4.5-7.5 LPA

Housing.com || Senior Account Manager || B2B Sales

Bangalore / Bengaluru

3-8 Yrs

₹ 6-11 LPA

Explore more jobs
Senior Accounts Manager
396 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Accounts Manager
236 salaries
unlock blur

₹3.5 L/yr - ₹9 L/yr

Team Manager
76 salaries
unlock blur

₹5.1 L/yr - ₹16.6 L/yr

Software Development Engineer
62 salaries
unlock blur

₹10 L/yr - ₹29.2 L/yr

Key Account Manager
46 salaries
unlock blur

₹4.2 L/yr - ₹12 L/yr

Explore more salaries
Compare Housing.com with

MagicBricks

4.3
Compare

NoBroker

3.2
Compare

PropTiger.com

4.0
Compare

99acres

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