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 Interview Questions and Answers

Updated 26 Feb 2025

Park Plus Interview Experiences

Popular Designations

36 interviews found

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

I applied via Referral

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. Tree questions , linked list , best , array
Round 3 - Technical 

(1 Question)

  • Q1. System design , irctc , working of hash map

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Interview Questions & Answers

user image Kunal mandavi

posted on 25 Sep 2023

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

I applied via Referral and was interviewed in Mar 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 tips
Round 2 - HR 

(3 Questions)

  • Q1. Basic question about yourself
  • Q2. Previous job and your role
  • Q3. What your expectation from company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer the question

Sde1 Interview Questions & Answers

user image Anonymous

posted on 27 Apr 2022

Round 1 - Technical 

(8 Questions)

  • Q1. 1. What is a doubly-linked list? And real-world applications.
  • Ans. 

    A doubly-linked list is a data structure where each node contains a reference to both the previous and next nodes.

    • Allows traversal in both directions

    • Used in implementing LRU cache

    • Used in browser history

    • Used in undo-redo functionality

  • Answered by AI
  • Q2. 2. Advantage of doubly linked list over singly LL?
  • Ans. 

    Doubly linked list allows traversal in both directions, while singly linked list only allows traversal in one direction.

    • Doubly linked list allows for efficient deletion of nodes compared to singly linked list.

    • Doubly linked list can be traversed in both forward and backward directions.

    • Doubly linked list can be used to implement a stack or queue.

    • Singly linked list requires less memory than doubly linked list.

    • Doubly linke...

  • Answered by AI
  • Q3. 3. Applications of Graph Data Structure
  • Ans. 

    Graph data structure is used in various applications such as social networks, routing algorithms, and recommendation systems.

    • Social networks use graphs to represent users and their connections.

    • Routing algorithms use graphs to find the shortest path between two points.

    • Recommendation systems use graphs to analyze user behavior and suggest relevant items.

    • Graphs are also used in computer networks, image processing, and mac...

  • Answered by AI
  • Q4. 4. Tree Traversals (Inorder, Preorder and Postorder)
  • Q5. 5. Remove duplicate elements and sort related scenario-based questions. Have to discuss the approach and then have to code it.
  • Q6. 6. Similar to bubble sort. Have to discuss the approach and then have to code it.
  • Q7. 7. What is the difference between In-memory DB and MySQL?
  • Ans. 

    In-memory DB stores data in RAM for faster access while MySQL stores data on disk.

    • In-memory DB is faster than MySQL as it eliminates disk I/O operations.

    • In-memory DB is suitable for real-time applications that require low latency.

    • MySQL is suitable for applications that require data persistence and durability.

    • In-memory DB may not be suitable for large datasets as it requires a lot of RAM.

    • MySQL supports complex queries a...

  • Answered by AI
  • Q8. 8. SQL related basic questions
Round 2 - Technical 

(7 Questions)

  • Q1. 1. Difference between RDBMS and NoSQL
  • Ans. 

    RDBMS is a structured database that uses SQL while NoSQL is a non-relational database that doesn't use SQL.

    • RDBMS stores data in tables with predefined schema while NoSQL stores data in documents, key-value pairs, or graphs.

    • RDBMS is good for complex queries and transactions while NoSQL is good for scalability and handling unstructured data.

    • Examples of RDBMS include MySQL, Oracle, and SQL Server while examples of NoSQL i

  • Answered by AI
  • Q2. 2. What is indexing?
  • Ans. 

    Indexing is the process of organizing data in a database or search engine to improve search efficiency.

    • Indexing creates a data structure that allows for faster retrieval of information.

    • It involves creating an index that maps the location of data in a database or search engine.

    • Indexing can be done on various types of data, such as text, numbers, and dates.

    • Examples of indexing methods include B-tree, hash, and bitmap ind

  • Answered by AI
  • Q3. 3. Scenario-based question: One employee table is there. We execute query One without indexing, one with indexing. What will be the difference?
  • Q4. 4. Explain the internal working of the above question.
  • Ans. 

    The question is unclear and requires clarification.

    • The question is not specific about what 'above question' it is referring to.

    • The term 'internal working' is also vague and needs to be defined.

    • Without more information, it is impossible to provide a meaningful answer.

  • Answered by AI
  • Q5. 5. Print the right view of the binary tree. Have to discuss the approach and then have to code it.
  • Q6. 6. Different modifications in the above question and then have to tell approaches like print left view of a binary tree.
  • Q7. 7. Print internal nodes of a binary tree (internal nodes means except nodes present in the left and right view)
  • Ans. 

    Print internal nodes of a binary tree (excluding left and right view nodes)

    • Traverse the tree in post-order and check if the node has both left and right children

    • If yes, then it is an internal node and print it

    • If no, then continue traversing the tree

    • Example: For the tree 1-2-4-5-3, the internal nodes are 2 and 4

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. They ask you to introduce yourself, followed by questions regarding your background goals, strengths, etc.

Interview Preparation Tips

Topics to prepare for Park Plus Sde1 interview:
  • Questions from your projects
Interview preparation tips for other job seekers - It is advisable to practice questions online from resources like Leetcode to improve your problem-solving ability. Good Knowledge of Database Management and DSA is essential. While explaining your approach to the interviewer, it would be great to explain it with some examples, which will make it easier for him to understand your approach.

Skills evaluated in this interview

Top Park Plus Sde1 Interview Questions and Answers

Q1. 1. What is a doubly-linked list? And real-world applications.
View answer (3)

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)

I appeared for an interview in May 2022.

Round 1 - Technical 

(1 Question)

  • Q1. With Product Strategy 1) Guesstimate - What is the daily revenue generated by Facebook Ads? 2) How would you improve the parking valet system? 3) What other product/vertical should an online car marketplac...
  • Ans. 

    Product Manager interview questions on product strategy

    • 1) Daily revenue generated by Facebook Ads is around $80 million

    • 2) Improve parking valet system by implementing a mobile app for booking and payment, using sensors to track available parking spots, and training staff on customer service

    • 3) Online car marketplace business should explore the vertical of car maintenance and repair services

  • Answered by AI
Round 2 - Case Study 

With PM
1) Subscription renewal for Amazon Prime has dropped by 30%. Figure out why?
2) User flow design - Car driver gets a fastag at beginning of Manesar-Jaipur journey. The entire journey toll amount is free if the driver stops at either of 2 partner food outlets and has a minimum food bill order of amount of sum of all tolls. Explain the user journey.

Round 3 - Case Study 

With CTO
1) Discussion about relevant past experience
2) Product Design - Should Park+ explore Car Service feature? If yes, why? And what will be the user flow?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your calm. Give a structure to all your answers. Clarify as much as you can. Prepare for questions/case studies relevant to automobile/vehicle solutions.

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)

Park Plus interview questions for popular designations

 Associate Product Manager

 (3)

 Software Development Engineer II

 (3)

 Software Engineer

 (2)

 Product Manager

 (2)

 Software Developer

 (2)

 Backend Developer

 (2)

 Sales Manager

 (2)

 Production Manager

 (1)

I appeared for an interview in Mar 2022.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Formal Introduction.
Asked About Projects.
Difference between SQL and NoSQL. Pros and Cons. Where should we use SQL and NoSQL.
Given a problem, I have to make a SQL Database structure and then interviewer told me to convert it into NoSQL.
asked coding questions

  • Q1. 

    Search In Rotated Sorted Array Problem Statement

    Given a sorted array of distinct integers that has been rotated clockwise by an unknown amount, you need to search for a specified integer in the array. Fo...

  • Ans. 

    Implement a search function to find a specified integer in a rotated sorted array.

    • Implement a binary search algorithm to find the target integer in the rotated sorted array.

    • Handle the cases where the target integer may lie in the left or right half of the rotation.

    • Keep track of the mid element and adjust the search range based on the rotation.

    • Return the index of the target integer if found, else return -1.

  • Answered by AI
  • Q2. 

    Zigzag Binary Tree Traversal Problem

    Given a binary tree, compute the zigzag level order traversal of the node values in the tree. The zigzag traversal requires traversing levels from left to right, then ...

  • Ans. 

    Zigzag level order traversal of a binary tree is computed by alternating between left to right and right to left traversal at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • Maintain a flag to switch between left to right and right to left traversal at each level.

    • Store the node values in a list while traversing and alternate the order based on the flag.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -...

  • Answered by AI

Interview Preparation Tips

Eligibility criterianaPark+ interview preparation:Topics to prepare for the interview - OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 5 MonthInterview preparation tips for other job seekers

Tip 1 : Prepare well for subjects
Tip 2 : Prepare for system design
Tip 3 : Practice coding

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Just write in format that is catchy

Final outcome of the interviewRejected

Skills evaluated in this interview

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 (43)
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. Your profile related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical questions interviewed and 3 rounds happen after that selection has been done within month

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Jobs at Park Plus

View all

I appeared for an interview in Jul 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

  • Q1. 

    Factorial of a Number Problem Statement

    You are provided with an integer 'N'. Your task is to calculate and print the factorial of 'N'. The factorial of a number 'N', denoted as N!, is the product of all ...

  • Ans. 

    Calculate and print the factorial of a given integer 'N'.

    • Iterate from 1 to N and multiply each number to calculate factorial

    • Handle edge cases like N=0 or N=1 separately

    • Use recursion to calculate factorial efficiently

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

A lot of theoretical questions related to HTML, CSS, Javascript and React were asked along with 2 coding problems. It was a little challenging round because of the time limit with each question.

  • Q1. 

    Array Sum Calculation

    Calculate the sum of all elements in an array of length N.

    Input:

    Line 1: An integer N indicating the size of the array.
    Line 2: N integers, the elements of the array, separated by ...
  • Ans. 

    Calculate the sum of all elements in an array of length N.

    • Read the size of the array N and then read N integers as elements of the array.

    • Iterate through the array and add each element to a running total to calculate the sum.

    • Return the final sum as the output.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was the CTO round, was asked to explain my projects in detail, he was testing if all the features were working the way I was explaining them.

  • Q1. 

    Queue Using Stacks Implementation

    Design a queue data structure following the FIFO (First In First Out) principle using only stack instances.

    Explanation:

    Your task is to complete predefined functions t...

  • Ans. 

    Implement a queue using stacks following FIFO principle.

    • Use two stacks to simulate a queue - one for enqueueing and one for dequeueing.

    • When dequeueing, if the dequeue stack is empty, transfer all elements from enqueue stack to dequeue stack.

    • Implement peek by returning the top element of the dequeue stack.

    • Implement isEmpty by checking if both stacks are empty.

    • Leverage stack functionalities like push, pop, and isEmpty in...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Ramaiah University of Applied Sciences. I applied for the job as Fullstack Developer in GurgaonEligibility criteriaNo criteriaPark+ interview preparation:Topics to prepare for the interview - React, Javascript, Data structures, NodeJs, Express, MongoDBTime required to prepare for the interview - 8 MonthsInterview preparation tips for other job seekers

Tip 1 : Put lots of time in clearing the basics first. 
Tip 2 : Don't rush to the next topic without understanding the current topic clearly. 
Tip 3 : Build few but good projects, put a lot of time in deciding how it looks and works. It's your golden chance to impress the interviewer.

Application resume tips for other job seekers

Tip 1 : Make a one page resume. 
Tip 2 : Customize the resume on the basis of job you're applying to. Remove all the irrelevant information that doesn't fit the particular job profile.

Final outcome of the interviewSelected

Skills evaluated in this interview

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

I applied via Referral and was interviewed in Jan 2022. 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 tips
Round 2 - HR 

(7 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.
  • Q6. Qualification
  • Q7. Location

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview was good and i met new people and learn many things to progress my carrer

Legal Intern Interview Questions asked at other Companies

Q1. What is the difference between substantive and procedural law
View answer (1)

I applied via Referral and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview no difficult question only they ask you whether you can sell or tell me about yourself and family background

Field Sales Officer Interview Questions asked at other Companies

Q1. Breif us about Diabetes & tell something about Anti - diabetic drugs
Add answer

Legal Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2022

I applied via Referral and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Clauses of agreement
  • Ans. 

    Clauses of agreement refer to specific terms and conditions that are agreed upon by parties involved in a legal contract.

    • Clauses of agreement outline the rights, obligations, and responsibilities of each party.

    • They provide clarity and prevent misunderstandings or disputes.

    • Examples of clauses include payment terms, termination conditions, confidentiality agreements, and dispute resolution mechanisms.

  • Answered by AI
  • Q2. Agreement and contract difference
  • Ans. An agreement which is enforecable by law is known as contract and agreement is a mutual consent between two or more persons
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a professional. Most of the questions asked to me about the legal

Legal Interview Questions asked at other Companies

Q1. Is your GPA an accurate reflection of ur abilities ? Why or why not ?
View answer (1)

Park Plus Interview FAQs

How many rounds are there in Park Plus interview?
Park Plus interview process usually has 1-2 rounds. The most common rounds in the Park Plus interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Park Plus 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 Park Plus. The most common topics and skills that interviewers at Park Plus expect are Sales, B2B Sales, Corporate Sales, Python and Marketing.
What are the top questions asked in Park Plus interview?

Some of the top questions asked at the Park Plus interview -

  1. 1. What is a doubly-linked list? And real-world applicatio...read more
  2. 7. What is the difference between In-memory DB and MyS...read more
  3. With Product Strategy 1) Guesstimate - What is the daily revenue generated by F...read more
How long is the Park Plus interview process?

The duration of Park Plus interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Park Plus Interview Process

based on 34 interviews

Interview experience

3.2
  
Average
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.6
 • 50 Interviews
Tokopedia Interview Questions
4.0
 • 25 Interviews
Meritto Interview Questions
3.6
 • 23 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
JUSPAY Interview Questions
3.1
 • 21 Interviews
Fraazo Interview Questions
3.4
 • 20 Interviews
Get my Parking Interview Questions
3.8
 • 8 Interviews
Parkwheels Interview Questions
3.1
 • 1 Interview
View all

Park Plus Reviews and Ratings

based on 185 reviews

2.9/5

Rating in categories

2.9

Skill development

2.6

Work-life balance

3.1

Salary

2.4

Job security

2.5

Company culture

2.5

Promotions

2.6

Work satisfaction

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

Secure Parking Solutions

4.1
Compare

Get my Parking

3.8
Compare

Parkwheels

3.1
Compare

ParkMate

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