Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Prop Times Team. If you also belong to the team, you can get access from here

Prop Times Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Prop Times Interview Questions, Process, and Tips

Updated 2 Feb 2025

Top Prop Times Interview Questions and Answers

View all 8 questions

Prop Times Interview Experiences

Popular Designations

7 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2023. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare to sales mindset

Business Development Associate Interview Questions asked at other Companies

Q1. You are going to the office and you saw a 6 years old poor guy selling pencils. Out of kindness you bought all the pencils(100 pcs) at Rs. 50 and gave him extra Rs. 50 to support his family. Since you don't require those pencils at all. Wha... read more
View answer (40)

Intern Interview Questions & Answers

user image Anonymous

posted on 2 Feb 2025

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

I appeared for an interview in Jan 2025.

Interview Preparation Tips

Interview preparation tips for other job seekers - Update your resume and online profiles, Identify your strenghs and weeknesses, set clear career goals.

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Prop Times Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Marketing Executive Interview Questions asked at other Companies

Q1. What is Service Scape ? After going through website, what do you think, how can we make better Servicescape for B2B marketplaces throgh Brandsmith Worldwide?
View answer (3)

Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

Prop Times interview questions for popular designations

 Marketing Executive

 (2)

 Sales Management Trainee

 (1)

 Intern

 (1)

 Sales Manager

 (1)

 Business Development Associate

 (1)

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

Marketing Executive Interview Questions asked at other Companies

Q1. What is Service Scape ? After going through website, what do you think, how can we make better Servicescape for B2B marketplaces throgh Brandsmith Worldwide?
View answer (3)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

Sales Management Trainee Interview Questions asked at other Companies

Q1. what is the importance of planning in sales.
View answer (1)

Jobs at Prop Times

View all

Sales Manager Interview Questions & Answers

user image Anonymous

posted on 20 Oct 2023

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

I applied via Referral and was interviewed before Oct 2022. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive. Have good knowledge of real estate before appearing.

Sales Manager Interview Questions asked at other Companies

Q1. If you're in Cold areas like Kashmir or Himachal Pradesh. & You have to sell an AC which is having only Cold option. How would you do that?
View answer (17)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It comprised of general aptitude questions and two coding questions. It was an offline test.

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard where no two queens threaten each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not attack each other.

    • Generate and print valid configurations where queens are placed safely.

    • Consider constraints and time limit for efficient solution.

    • Exam...

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Achieve sorting in a single scan over the array without using any extra space.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

After having a technical discussion about my CV. He gave me two questions to code.

  • Q1. 

    Ninja and Substrings Problem Statement

    Ninja has to determine all the distinct substrings of size two that can be formed from a given string 'STR' comprising only lowercase alphabetic characters. These su...

  • Ans. 

    Find all unique contiguous substrings of size two from a given string.

    • Iterate through the string and extract substrings of size two

    • Use a set to store unique substrings

    • Return the set as an array of strings

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was supposed to be the HR round but out of surprise the interviewer started by giving me a question to code. 
After I approached this question with the right solution he just asked about my family. After that he said to wait. After half an hour the results were announced. A total of three students were hired and I was amongst one of them.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use recursion to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Return the valid combinations as an array of strings.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMagicbricks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 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 interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to only and only earn money without seeing your personal and professional life this company is best for you. They know how to use the employees.
Contribute & help others!
anonymous
You can choose to be anonymous

Prop Times Interview FAQs

How many rounds are there in Prop Times interview?
Prop Times interview process usually has 1-2 rounds. The most common rounds in the Prop Times interview process are HR, One-on-one Round and Resume Shortlist.
How to prepare for Prop Times 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 Prop Times. The most common topics and skills that interviewers at Prop Times expect are Client Handling, Real Estate Sales, Partner Management, Relationship Management and Software Configuration Management.
What are the top questions asked in Prop Times interview?

Some of the top questions asked at the Prop Times interview -

  1. What is keyword research, and how do you conduct ...read more
  2. What is different between on-page and off-page S...read more
  3. How will you give solution for general sales prob...read more

Recently Viewed

INTERVIEWS

Latinem

No Interviews

SALARIES

Advance India Projects

INTERVIEWS

Adani Realty

No Interviews

SALARIES

Advance India Projects

SALARIES

Cushman & Wakefield

SALARIES

Advance India Projects

INTERVIEWS

Isprava

No Interviews

SALARIES

Advance India Projects

No Salaries

SALARIES

Advance India Projects

SALARIES

Cushman & Wakefield

Tell us how to improve this page.

Prop Times Interview Process

based on 10 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

NoBroker Interview Questions
3.2
 • 234 Interviews
Square Yards Interview Questions
3.8
 • 198 Interviews
MagicBricks Interview Questions
3.7
 • 59 Interviews
Quikr Interview Questions
3.7
 • 31 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
Makaan.com Interview Questions
3.8
 • 1 Interview
View all

Prop Times Reviews and Ratings

based on 77 reviews

4.3/5

Rating in categories

4.2

Skill development

4.0

Work-life balance

4.3

Salary

4.0

Job security

4.3

Company culture

4.2

Promotions

4.1

Work satisfaction

Explore 77 Reviews and Ratings
Real Estate Sales Consultant

Bangalore / Bengaluru

0-4 Yrs

Not Disclosed

Explore more jobs
Business Development Associate
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Management Trainee
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Sales Executive
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Prop Times with

MagicBricks

4.0
Compare

99acres

3.9
Compare

CommonFloor

3.7
Compare

Square Yards

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