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

Devops Interview Questions & Answers

user image swapnil rastogi

posted on 21 Nov 2015

I applied via Referral

Interview Questionnaire 

8 Questions

  • Q1. How will you kill all java process in one command ?
  • Ans. 

    Use 'pkill' command with '-f' option to kill all java processes.

    • Open terminal or command prompt

    • Type 'pkill -f java' and press enter

    • All java processes will be terminated

  • Answered by AI
  • Q2. How will you monitor file change in linux ?
  • Ans. 

    Use inotifywait command to monitor file changes in Linux.

    • Install inotify-tools package

    • Use inotifywait command with options like -m for continuous monitoring and -e for specific events

    • Example: inotifywait -m /var/log/messages -e modify

    • Output will show the file path, event type and timestamp

  • Answered by AI
  • Q3. What is a process in linux ?
  • Ans. 

    A process in Linux is a running instance of a program or command.

    • A process is identified by a unique process ID (PID)

    • Processes can be started, stopped, and managed using commands like ps, kill, and top

    • Processes can run in the foreground or background

    • Processes can communicate with each other through inter-process communication (IPC)

    • Examples of processes include web servers, database servers, and user applications

  • Answered by AI
  • Q4. How does a linux boot ?
  • Ans. 

    Linux boot process involves several stages including BIOS, bootloader, kernel initialization, and user space initialization.

    • BIOS performs a power-on self-test and loads the bootloader from the boot device.

    • Bootloader loads the kernel into memory and initializes it.

    • Kernel initializes hardware, mounts the root file system, and starts the init process.

    • Init process starts user space processes and services.

    • Linux boot process...

  • Answered by AI
  • Q5. Given a file with random content, could you find out all the phone numbers ?
  • Ans. 

    Yes, by using regular expressions to match phone number patterns.

    • Use regular expressions to match phone number patterns

    • Common phone number patterns include (XXX) XXX-XXXX and XXX-XXX-XXXX

    • Consider international phone number formats as well

    • Use a programming language with regex support, such as Python or JavaScript

  • Answered by AI
  • Q6. Usecase for chef and why do you need it ?
  • Ans. 

    Chef is a configuration management tool used for automating infrastructure deployment and management.

    • Chef helps in automating the process of configuring and managing servers and applications.

    • It allows for consistent and repeatable infrastructure deployments.

    • Chef can be used to manage both on-premises and cloud-based infrastructure.

    • It provides a centralized platform for managing configurations and enforcing policies.

    • Che...

  • Answered by AI
  • Q7. Ruby program to find out if a directory exists and you write permissions to it ?
  • Ans. 

    Ruby program to check directory existence and write permissions.

    • Use File.exist? method to check if directory exists.

    • Use File.writable? method to check if directory has write permissions.

    • Combine both methods to get the desired result.

  • Answered by AI
  • Q8. How would you optimise a given sql query ?
  • Ans. 

    Optimise SQL query by identifying bottlenecks and improving indexing and query structure.

    • Identify slow performing queries using profiling tools

    • Improve indexing by adding or removing indexes

    • Rewrite query structure to reduce complexity and improve performance

    • Use query optimisation techniques like subqueries and joins

    • Consider caching frequently accessed data

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was referred by a friend already working at Housing.com.
Tips: I find it best to keep yourself updated with what other people with same job profile are doing. That way you can learn new things and make it shine on your resume even if you have no work ex on the same.

Round: Technical Interview
Experience: First round was skype based technical interview.
You are connected through screen on the terminal and basic to advanced shell scripting is asked.
They will ask basic to advanced shell commands, some shell scripting tasks and about linux kernel.
Tips: You have to be really sure in a skype interview that you know the question being asked, as you can't take much time.


Round: Technical Interview
Experience: This round was also on skype.
This round was more DevOps tools oriented and language programming.
They asked me about Chef, Ansible and some other tools used for configuration management and deployment.
They ask if your familiar with AWS and other cloud services.
Also you will get to show that you can code in any scripting languages like ruby or python.
Also some database related things.
Tips: Only mention the tools you really know inside out in the resume.

General Tips: You should be updated with whats going on with latest devops developments.

Skills: Confidence, Database, Programming, Linux
College Name: BITS Pilani - Hyderabad
Motivation: My motivation was to learn scalability on things as its a big platform with millions of users for mobile and web app.

Skills evaluated in this interview

Top Housing.com Devops Interview Questions and Answers

Q1. How will you kill all java process in one command ?
View answer (2)

Devops Interview Questions asked at other Companies

Q1. How will you setup a microservice architecture application simple testing environment and deployment pipeline using kubernetes, containers, jenkins and available Cloud services.
View answer (2)

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

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

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

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)
  • 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

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
-
Round 1 - Technical 

(2 Questions)

  • Q1. Discussion on strong and weak reference
  • 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

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Get interview-ready with Top Housing.com Interview Questions

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

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
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

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.

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

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
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • 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

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.

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

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.

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

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

Apex Group

No Interviews

INTERVIEWS

Shell

No Interviews

INTERVIEWS

AlmaBetter

No Interviews

INTERVIEWS

Apex Group

No Interviews

INTERVIEWS

AlmaBetter

No Interviews

INTERVIEWS

AlmaBetter

No Interviews

INTERVIEWS

Apex Group

50 top interview questions

INTERVIEWS

Shell

No Interviews

INTERVIEWS

Rock On

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