Upload Button Icon Add office photos

Housing.com

Compare button icon Compare button icon Compare

Filter interviews by

Housing.com City Head Interview Questions and Answers

Updated 30 Apr 2024

Housing.com City Head Interview Experiences

1 interview found

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 Jobs at Housing.com

View all

Interview questions from similar companies

City Head Interview Questions & Answers

Meesho user image achal sharma

posted on 15 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is you core strength and weakness ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Core strength is passionate about numbers and achievements, weakness is believing on people easily , workaholic sometimes which effects in personal life too.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between a user of blinkit in metro city and in a tier 3 city
  • Ans. 

    Users of blinkit in metro cities and tier 3 cities have different needs and preferences due to varying levels of infrastructure and lifestyle.

    • In metro cities, users of blinkit may have higher expectations for faster delivery times and a wider range of products available.

    • In tier 3 cities, users may prioritize affordability and reliability of service over speed and variety.

    • Metro city users may be more tech-savvy and comf...

  • Answered by AI
  • Q2. Financial explanation and breakdown of the previous company experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Reasearch about the company and its user through the core, read and research on your resume properly, keep the numbers handy

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Team handling

I applied via Naukri.com and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am Vishnu Sharma. It's qualification B.Sc (hon math). Three years experience in TL post.

I applied via Naukri.com and was interviewed in Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How to increase business?
  • Ans. 

    To increase business, focus on customer satisfaction, expand marketing efforts, and offer promotions.

    • Improve customer service to increase customer satisfaction and loyalty

    • Expand marketing efforts through social media, email marketing, and targeted advertising

    • Offer promotions such as discounts, referral programs, and loyalty rewards

    • Analyze market trends and adjust business strategies accordingly

    • Collaborate with other bu...

  • Answered by AI
  • Q2. Case study and solutions to business problem
  • Q3. Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 40 candidates and 2 posts were there,
The interview was ,
Written test,
Group discussion,
Interview with Manager.

You need to be prepared for ground level questions.

I applied via Walk-in and was interviewed before Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1- introduction 2- previous company work details and how to working. 3- what is grofers (do.doing) 4-Why is left job. Etc
  • Q2. Etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Previous company all work details and all knowledge to grofers work details (do,doing)

I applied via Recruitment Consultant and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Sales

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company

Housing.com Interview FAQs

How many rounds are there in Housing.com City Head interview?
Housing.com interview process usually has 2 rounds. The most common rounds in the Housing.com interview process are HR and One-on-one Round.
How to prepare for Housing.com City Head 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 Real Estate Sales, Sales, Bfsi Sales, Sales Planning and Sales Strategy.
What are the top questions asked in Housing.com City Head interview?

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

  1. On the name of interview, interviewer discussed about housing more and did not ...read more
  2. Related to my exisitng role, went w...read more

Tell us how to improve this page.

Housing.com City Head Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 433 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 331 Interviews
Myntra Interview Questions
4.0
 • 217 Interviews
Blinkit Interview Questions
3.7
 • 186 Interviews
BlackBuck Interview Questions
3.8
 • 179 Interviews
FirstCry Interview Questions
3.6
 • 172 Interviews
Spinny Interview Questions
3.7
 • 170 Interviews
Tata 1mg Interview Questions
3.6
 • 148 Interviews
Digit Insurance Interview Questions
3.9
 • 145 Interviews
View all
Housing.com City Head Salary
based on 8 salaries
₹16.5 L/yr - ₹35 L/yr
54% more than the average City Head Salary in India
View more details
Senior Accounts Manager
395 salaries
unlock blur

₹4.2 L/yr - ₹12 L/yr

Accounts Manager
238 salaries
unlock blur

₹3.5 L/yr - ₹9 L/yr

Team Manager
77 salaries
unlock blur

₹5.1 L/yr - ₹16.6 L/yr

Software Development Engineer
63 salaries
unlock blur

₹10 L/yr - ₹28.5 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.4
Compare

NoBroker

3.2
Compare

Udaan

3.9
Compare

Swiggy

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