Upload Button Icon Add office photos

Housing.com

Compare button icon Compare button icon Compare

Filter interviews by

Housing.com Software Development Engineer Interview Questions and Answers

Updated 14 Oct 2024

Housing.com Software Development Engineer Interview Experiences

2 interviews found

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

I applied via campus placement at Netaji Subhas Institute of Technology (NSIT)

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

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Easy to medium level questions asked. Overall it was good
Round 2 - One-on-one 

(1 Question)

  • Q1. Medium to difficult level conceptual questions asked

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud

Software Development Engineer Jobs at Housing.com

View all

Interview questions from similar companies

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

(3 Questions)

  • Q1. Hard Stock sell problem
  • Ans. 

    The hard stock sell problem involves determining the best time to sell stocks to maximize profit.

    • Consider using dynamic programming to solve this problem efficiently.

    • Keep track of the minimum stock price seen so far and calculate the maximum profit that can be made by selling at each day.

    • The final answer will be the maximum profit that can be made by selling at the last day.

  • Answered by AI
  • Q2. Create a server without express
  • Ans. 

    Creating a server without using Express framework

    • Use Node.js built-in 'http' module to create a server

    • Listen for incoming requests on a specific port

    • Handle different routes and methods using 'http' module

  • Answered by AI
  • Q3. What is singleton class, write a usecase through code
  • Ans. 

    Singleton class is a class that can only have one instance created throughout the application.

    • Singleton class restricts the instantiation of a class to one object.

    • It is often used for logging, caching, thread pools, database connections, etc.

    • Example: Java implementation of Singleton class -

    • public class Singleton { private static Singleton instance; private Singleton() {} public static Singleton getInstance() { if(insta...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn node, express basics(basics means covering whole basic groud not touch and go) like about making servers (with or without express) and emitters. Have a good hold of basic DSA till atleast till linked list and few dp questions(easy ones). Have some projects or internships if fresher. If frontend learn react hooks, state management, redux.

This all should do it, chao!! 😄

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Design cab booking system on hacker rank platform

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

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy-Medium level questions

Round 2 - Technical 

(2 Questions)

  • Q1. Design coffee machine
  • Ans. 

    Design a coffee machine with various features and options for customization.

    • Include options for different types of coffee (espresso, latte, cappuccino, etc.)

    • Allow customization of coffee strength and temperature

    • Include a milk frother for making specialty drinks

    • Have a water reservoir and bean grinder for convenience

    • Include a display screen for easy navigation and selection of options

  • Answered by AI
  • Q2. Projects discussion
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2022.

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. Basic dsa question of 2 sum and other questions around HTML and css
Round 3 - Technical 

(1 Question)

  • Q1. Egineering manager round asked about my college projects
Round 1 - Coding Test 

Duration: 1 hour
Platform: Hackerrank
Topics : Standard Interview Problems

Round 2 - Technical 

(1 Question)

  • Q1. SQL based, Puzzle based

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the famous problems and SQL

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Datastructure and algorithms,Linkedlist,arrays,dynamic programming,recursion,design patterns,Trees

Interview Preparation Tips

Interview preparation tips for other job seekers - There will be four technical interviews
1.hackerearth round
2.problem solving round-1
3.problem solving round-2
4.Design round- where you will be asked to design an application with given requirements

Interview Preparation Tips

Round: Resume Shortlist
Experience: Myntra had conducted a coding test on campus before the start of the placement season with 2 questions, one on stack and other on DP. The eligible branches were Computer Science & Engineering, Mathematics & Computing, Electrical Engineering and Electronics & Communication Engineering. I couldn't give the test because my branch was Engineering Physics. However, when they visited campus for interviews on day 2, everyone who had cleared their test was already placed. They looked over some resumes for interviews and decided to interview me, since i had some projects in Machine Learning and Computer Vision.
Tips: For the test, the DP question asked was pretty standard, on Longest Common Subsequence. The question on stacks, i dont remember what it was but it was also pretty straight forward. For the test, i would reommend to solve problem from geeksforgeeks. If they do come to resume shortlisting, they are looking for people who have done good projects and internships.

Round: Interview
Experience: The interview started off with questions on my general interest in Software Development. The first round had two coding questions, i was supposed to write the code on paper. The first question was to add two numbers represented by linked lists - -----/. They gave a specific input and asked me to demonstrate step by step in my code, how it would lead to the correct answer. I dont remember the second question, but it was also an easy one on linked lists.
Tips: It's ok if you can't code a general solution, if you can write a code which works for the particular input they have given then also it's ok with them. But be thorough with Data structures.

Round: Interview
Experience: I wasn't asked to write any code in this interview. They asked me some questions on Machine Learning, because of my projects in them. Then they asked me if i knew graph algorithms. Since i knew BFS and DFS, i told them. They asked the difference between the two. Then they asked me if i knew how to find the shortest distance between two points in a graph. I didn't know Djikstra's properly but i knew it worked on the greedy approach so was able to tell that. Then they asked me how would i find the second shortest path. I tried to answer it with the same greedy approach, but couldn't arrive at the complete solution.
Tips: They ask a tough theoretical question. It's ok if you don't know the answer, they only look for your approach.

Round: Interview
Experience: They asked me to code one question which was on stacks, i don't remember the question, but it was also not difficult, and i wrote the code for that. Then they started to drill me on my resume, on every project that i had done, every miniscule detail.
Tips: Be very thorough with your resume. It's a clear red flag for them if you can't explain something you have written on your resume.

General Tips: Be thorough with Data Structures and Algorithms and also with your resume.
Skill Tips: They generally stick to coding only.
Skills: Coding
College Name: IIT Guwahati
Motivation: Wanted a job in Software Development.
Funny Moments: My third round started pretty late in the night around 11:30 PM. So, had a walking interview in front of the canteen because the interviewer thought i looked tired and should have a cup of coffee.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur and was interviewed before May 2022. There were 3 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 - Aptitude Test 

Basic maths, logical resoning, puzzles

Round 3 - Coding Test 

Competitive Programming on Dynamic Programming, Java code debug, SQL qurries

Interview Preparation Tips

Topics to prepare for Paisabazaar.com Software Development Engineer interview:
  • DSA
  • React.Js
  • SQL
  • Git
Interview preparation tips for other job seekers - In interview DSA was asked. I had to write pseudo code of BFS and explain its time complexity

Housing.com Interview FAQs

How many rounds are there in Housing.com Software Development Engineer 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 and Coding Test.
How to prepare for Housing.com Software Development Engineer 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 AWS, Ansible, CSS, Configuration management and Data Structures and Algorithms.
What are the top questions asked in Housing.com Software Development Engineer interview?

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

  1. Design Heap( tr...read more
  2. Easy to medium level questions asked. Overall it was g...read more
  3. Medium to difficult level conceptual questions as...read more

Tell us how to improve this page.

Housing.com Software Development Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Housing.com Software Development Engineer Salary
based on 62 salaries
₹10 L/yr - ₹29.2 L/yr
43% more than the average Software Development Engineer Salary in India
View more details

Housing.com Software Development Engineer Reviews and Ratings

based on 5 reviews

3.5/5

Rating in categories

2.9

Skill development

3.6

Work-life balance

3.1

Salary

2.4

Job security

4.0

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 5 Reviews and Ratings
Senior Accounts Manager
399 salaries
unlock blur

₹4.2 L/yr - ₹12 L/yr

Accounts Manager
231 salaries
unlock blur

₹3.5 L/yr - ₹8.8 L/yr

Team Manager
74 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

3.4
Compare

NoBroker

3.1
Compare

PropTiger.com

4.0
Compare

99acres

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