Upload Button Icon Add office photos
Engaged Employer

i

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

Park Plus Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Park Plus City Head Interview Questions and Answers for Experienced

Updated 17 Jan 2023

Park Plus City Head Interview Experiences for Experienced

1 interview found

City Head Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2023

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Jan 2022.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. And other general mental strength and communication based questions
Round 2 - Assignment 

Case study ppt was submitted how will you face a situation which was given...

Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussion on case study
  • Ans. Justify a simple ppt that has been made
  • Answered by wantedcheetah
  • Q2. Salary discussion and team discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - JD and roles offered were not explained properly
Can explore other startups, considering organizational culture

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. About my till date professional journey
  • Q2. How do you prioritize the leads
  • Ans. 

    I prioritize leads based on their potential value, urgency, and fit with our product or service.

    • Assess the potential value of each lead in terms of revenue generation

    • Consider the urgency of the lead and prioritize those with immediate needs

    • Evaluate how well the lead fits with our product or service to determine likelihood of conversion

  • Answered by AI
  • Q3. How do you handle the objections
Round 2 - One-on-one 

(2 Questions)

  • Q1. How much do you know about Meritto?
  • Q2. What is your strategy for upselling and cross-selling
  • Ans. 

    My strategy for upselling and cross-selling involves understanding customer needs, offering relevant products/services, and building strong relationships.

    • Identify customer needs and preferences through active listening and asking probing questions

    • Recommend additional products/services that complement the customer's initial purchase

    • Utilize data analytics to suggest personalized recommendations based on past purchase his...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please check the company website in detail
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions about python, Sql, Basic coding questions
Round 2 - One-on-one 

(1 Question)

  • Q1. How will you handle exceptions in django framework. it was basic discussion round with the cto
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. React, React Native Basics
  • Q2. Coding Arrays & Objects

Interview Preparation Tips

Interview preparation tips for other job seekers - Better Experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was good, actually they asked parentheses balance question, Getting duplicate values , pallindrome question and also Target sum with O(n) TC.

Round 2 - HR 

(2 Questions)

  • Q1. Basic questions
  • Q2. Tell Me about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well the basics

Manager Interview Questions & Answers

Droom user image Anonymous

posted on 11 May 2023

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

I applied via Job Portal and was interviewed in Apr 2023. There were 4 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. Head Hr round The first round includes screening and breifing.
  • Q2. Related to CV only
Round 3 - One-on-one 

(1 Question)

  • Q1. Job profile in detail
Round 4 - One-on-one 

(1 Question)

  • Q1. Profile in depth with calculations
  • Ans. 

    The question is asking for a detailed profile with calculations.

    • Provide a comprehensive overview of the subject with relevant data and statistics.

    • Include calculations to support your analysis and conclusions.

    • Use graphs, charts, and other visual aids to enhance your presentation.

    • Highlight key strengths and weaknesses of the subject and provide recommendations for improvement.

    • Ensure that your profile is well-organized an

  • Answered by AI

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening. Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. 

    Identify the length of the largest cycle in a maze represented by cells and an array of integers.

    • Iterate through each cell and find the cycle length using DFS or Floyd's Tortoise and Hare algorithm.

    • Handle self-cycles and cells with no exit by checking arr[i] = i and arr[i] = -1 respectively.

    • Output the length of the largest cycle found or -1 if no cycles exist.

  • Answered by AI
  • Q2. 

    Ninja and the Maze Problem Statement

    Ninja is stuck in a maze represented as a 2D grid. He can move in four directions (Up, Down, Left, Right) until he hits a wall ('1'). Once stopped, he can choose a new...

  • Ans. 

    Determine if Ninja can reach the destination in a maze by moving in four directions until hitting a wall.

    • Create a function to traverse the maze using depth-first search or breadth-first search.

    • Keep track of visited cells to avoid infinite loops.

    • Return 'True' if destination is reachable, 'False' otherwise.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects.
Tip 2 : Practice dynamic programming.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening . Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. 

    Identify the length of the largest cycle in a maze represented by cells and an array of integers.

    • Iterate through each cell and find the cycle length using DFS or Floyd's Tortoise and Hare algorithm.

    • Keep track of visited cells to avoid infinite loops.

    • Return the length of the largest cycle found or -1 if no cycles exist.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects
Tip 2 : Be good in data structure
 

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Don't try to add false things.

Final outcome of the interviewRejected

I appeared for an interview in Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

The coding round was 90 minutes with 2 question and the difficulty was mid-range and both were graph question

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from start to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions (up, down, left, right) from each cell.

    • Add the current direction to the path and recursively explore further.

    • When reaching the destination, add the path to the list of valid paths.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriacgpa above 7.5JUSPAY interview preparation:Topics to prepare for the interview - Python, data structure , algorithm, database , osTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice question and try to understand with using javascript
Tip 2 : The Elm Architecture. 
Tip 3 : Project matters

Application resume tips for other job seekers

Tip 1 : Have web development project
Tip 2 : learn purescript and node.js

Final outcome of the interviewRejected

Park Plus Interview FAQs

How many rounds are there in Park Plus City Head interview for experienced candidates?
Park Plus interview process for experienced candidates usually has 4 rounds. The most common rounds in the Park Plus interview process for experienced candidates are One-on-one Round, Resume Shortlist and Assignment.
How to prepare for Park Plus City Head interview for experienced candidates?
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 Park Plus. The most common topics and skills that interviewers at Park Plus expect are Sales, Sales Operations, B2B Sales, IT Product Sales and Sales Planning.
What are the top questions asked in Park Plus City Head interview for experienced candidates?

Some of the top questions asked at the Park Plus City Head interview for experienced candidates -

  1. And other general mental strength and communication based questi...read more
  2. Discussion on case st...read more

Tell us how to improve this page.

Park Plus City Head Interview Process for Experienced

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.6
 • 50 Interviews
Tokopedia Interview Questions
4.1
 • 25 Interviews
Meritto Interview Questions
3.6
 • 22 Interviews
JUSPAY Interview Questions
3.1
 • 21 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
Melorra Interview Questions
3.1
 • 20 Interviews
Fraazo Interview Questions
3.4
 • 20 Interviews
Droom Interview Questions
3.8
 • 19 Interviews
AstroTalk Interview Questions
3.4
 • 19 Interviews
View all
Park Plus City Head Salary
based on 16 salaries
₹11 L/yr - ₹19.6 L/yr
21% more than the average City Head Salary in India
View more details

Park Plus City Head Reviews and Ratings

based on 3 reviews

3.4/5

Rating in categories

3.1

Skill development

3.5

Work-life balance

4.1

Salary

2.8

Job security

3.1

Company culture

3.1

Promotions

2.4

Work satisfaction

Explore 3 Reviews and Ratings
Sales Manager
63 salaries
unlock blur

₹5.5 L/yr - ₹12.3 L/yr

Assistant Manager
36 salaries
unlock blur

₹3.2 L/yr - ₹11.5 L/yr

Program Manager
26 salaries
unlock blur

₹8 L/yr - ₹24.6 L/yr

Software Development Engineer II
17 salaries
unlock blur

₹8.1 L/yr - ₹25 L/yr

Zonal Manager
16 salaries
unlock blur

₹13 L/yr - ₹24 L/yr

Explore more salaries
Compare Park Plus with

MagicPin

2.6
Compare

Awign Enterprises

3.9
Compare

Nestaway

3.8
Compare

Flyhomes

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