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. Subarray Challenge: Largest Equal 0s and 1s Determine the length of the largest subarray within a given array of 0s and 1s, such that the subarray contains an equal numb ...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

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 - HR 

(1 Question)

  • Q1. About locality, driving and field sales
Round 3 - One-on-one 

(1 Question)

  • Q1. Interview with city head, ask questions related your sales skill, are u comfortable with field sales.

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have idea about field sales, not needed to prepare any bookish things.

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 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 - HR 

(2 Questions)

  • Q1. Introduce yourself.
  • Q2. Why do you want to join Real-estate

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)

Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2022

I applied via Walk-in and was interviewed in Nov 2022. 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 - HR 

(4 Questions)

  • Q1. Where are you coming from?
  • Q2. Are you with experience in job?
  • Q3. Previous working company name?
  • Q4. Why reliving job from previous company?your family details explain?

Interview Preparation Tips

Interview preparation tips for other job seekers - Salary including allowance,find job details,date of work report maintenance, timing with correct keeping,
Round 1 - Technical 

(4 Questions)

  • Q1. Hooks based questions, what are hooks and use cases
  • Q2. What is prototypal Inheritance
  • Ans. 

    Prototypal Inheritance is a way of creating objects based on existing objects.

    • Objects inherit properties and methods from their prototype object

    • Allows for efficient use of memory and code reuse

    • Can lead to unexpected behavior if not used carefully

  • Answered by AI
  • Q3. What is es6 features
  • Ans. 

    ES6 (ECMAScript 2015) is a major update to JavaScript that introduced new features and syntax.

    • let and const for variable declaration

    • arrow functions for concise syntax

    • template literals for string interpolation

    • destructuring for easy assignment of object properties

    • spread and rest operators for manipulating arrays and objects

    • classes for object-oriented programming

    • modules for better code organization

  • Answered by AI
  • Q4. Explain closures with examples
  • Ans. 

    Closures are functions that have access to variables in their outer scope.

    • Closures are created when a function is defined inside another function.

    • The inner function has access to the outer function's variables, even after the outer function has returned.

    • Closures can be used to create private variables and methods in JavaScript.

    • Example: function outer() { let x = 10; function inner() { console.log(x); } return inner; }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth Javascript advance concepts

Skills evaluated in this interview

UI Frontend Developer Interview Questions asked at other Companies

Q1. What are pseudo classes and pseudo elements in CSS?
View answer (1)

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)

Sde1 Interview Questions & Answers

user image Anonymous

posted on 26 Jul 2022

I applied via Recruitment Consulltant and was interviewed in Jan 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Two coding question regarding dp and tree
Round 3 - Technical 

(1 Question)

  • Q1. 1 system design question
Round 4 - HR 

(1 Question)

  • Q1. Basic hr question regarding why do we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just brush up your coding skills that will be enough to crack the process.

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)

Get interview-ready with Top Housing.com Interview Questions

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Self introduction why you want to join housing.com Knowledge about verticle of REA india

Interview Preparation Tips

Topics to prepare for Housing.com Accounts Manager interview:
  • real estate
  • ecommerce
  • competitor of company
Interview preparation tips for other job seekers - interview is easy to crack and 3 level face to face process

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)

I was interviewed in May 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Be prepared for JavaScript and web fundamentals . I have given most of the answer including DS question and interviewer is also very good , explained every answer which i don't know.

  • Q1. 

    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 each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and use a hashmap to store the difference between the target sum and each element.

    • Check if the difference exists in the hashmap, if so, add the pair to the result list.

    • Sort the result list based on the criteria mentioned in the question.

    • Return the sorted list of pairs.

  • Answered by AI
  • Q2. What are closures in JavaScript?
  • Ans. 

    Closures in JavaScript are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow functions to access variables from their parent function's scope

    • They are created whenever a function is defined within another function

    • Closures can be used to create private variables and functions in JavaScript

  • Answered by AI
  • Q3. Can you write a polyfill for event delegation in JavaScript?
  • Ans. 

    Yes, event delegation can be achieved by attaching an event listener to a parent element and then checking the target element of the event.

    • Attach an event listener to a parent element that contains the child elements you want to delegate events to.

    • Check the target element of the event to determine if it matches the desired child element.

    • Perform the appropriate action based on the target element.

  • Answered by AI
  • Q4. Can you explain the concepts of deep and shallow copy in JavaScript with examples?
  • Ans. 

    Deep copy creates a new copy of an object/array with all nested values copied, while shallow copy creates a new object/array with references to the original nested values.

    • Deep copy creates a completely new copy of an object/array, including all nested values, while shallow copy only creates a new object/array with references to the original nested values.

    • In JavaScript, deep copy can be achieved using methods like JSON....

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions based on CSS and Web basics.

  • Q1. What is the difference between absolute and fixed positioning in CSS?
  • Ans. 

    Absolute positioning is relative to the nearest positioned ancestor, while fixed positioning is relative to the viewport.

    • Absolute positioning is relative to the nearest positioned ancestor.

    • Fixed positioning is relative to the viewport.

    • Absolute positioned elements are removed from the normal document flow.

    • Fixed positioned elements stay in the same position even when the page is scrolled.

  • Answered by AI
  • Q2. How does a browser render a webpage?
  • Ans. 

    A browser renders a webpage by parsing HTML, CSS, and JavaScript, constructing the DOM tree, rendering the layout, and painting the pixels on the screen.

    • Browser requests the HTML file from the server

    • Browser parses the HTML and constructs the DOM tree

    • Browser fetches external resources like CSS and JavaScript files

    • Browser applies CSS styles to the DOM elements and constructs the render tree

    • Browser executes JavaScript cod...

  • Answered by AI
  • Q3. What is webpack?
  • Ans. 

    Webpack is a module bundler for JavaScript applications.

    • Webpack takes modules with dependencies and generates static assets representing those modules.

    • It can handle various types of assets like JavaScript, CSS, and images.

    • Webpack allows for code splitting, lazy loading, and hot module replacement.

    • Common configuration options include entry, output, loaders, and plugins.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. Eligibility criteriaAbove 7 CGPAHousing.com interview preparation:Topics to prepare for the interview - Java script, Web Fundamentals, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Housing.com Front end Engineer Interview Questions and Answers

Q1. 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 each sum of a pair equals 'S'. Note: Each pair should be ordered such that... read more
View answer (1)

Front end Engineer Interview Questions asked at other Companies

Q1. 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 each sum of a pair equals 'S'. Note: Each pair should be ordered such that... read more
View answer (1)

I applied via Referral and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. JavaScript - Closure, 2 question find the output based on question, pollyfill for event delegation, deep and shallow copy with example, and basic js question. CSS - basic css like diff between absolute and...

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview using referral, Be prepared for JavaScript and web fundamentals . I have given most of the answer including DS question and interviewer is also very good , explained every answer which i don't know.
Problem is with the HR of the company , she did not even care to provide the feedback and even rejection mail to me. I even Mail her to give at least feedback as interview went well but no response, why does this HR are always like this in most of the company better replace them with BOT in near future. HR like this make company reputation to negative.

Top Housing.com Front end Engineer Interview Questions and Answers

Q1. 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 each sum of a pair equals 'S'. Note: Each pair should be ordered such that... read more
View answer (1)

Front end Engineer Interview Questions asked at other Companies

Q1. 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 each sum of a pair equals 'S'. Note: Each pair should be ordered such that... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 2 Aug 2021

Interview Questionnaire 

2 Questions

  • Q1. They scheduled the interview, all-round are cleared but they still not revealing the result.
  • Q2. If the candidate was not cleared the round means kindly let them know, so they can`t waste their time with good company without knowing the result, this is the company which is hiring the employee for next...

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself, previous work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Must know basic accounting and master in MS office tools

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

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 547 reviews

3.7/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.9

Salary

3.2

Job security

3.7

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 547 Reviews and Ratings
Senior Accounts Manager
396 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
235 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Manager
76 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
62 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Key Account Manager
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Housing.com with

MagicBricks

3.6
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