i
Park Plus
Filter interviews by
I applied via Referral
I applied via Referral and was interviewed in Mar 2023. There were 2 interview rounds.
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
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...
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...
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...
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
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
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.
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
I appeared for an interview in May 2022.
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
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.
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?
Park Plus interview questions for popular designations
I appeared for an interview in Mar 2022.
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
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...
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.
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 ...
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 -...
Tip 1 : Prepare well for subjects
Tip 2 : Prepare for system design
Tip 3 : Practice coding
Tip 1 : Don't lie on resume
Tip 2 : Just write in format that is catchy
I appeared for an interview in Jul 2021.
Round duration - 45 Minutes
Round difficulty - Easy
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 ...
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
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.
Calculate the sum of all elements in an array of length N
.
Line 1: An integer N indicating the size of the array.
Line 2: N integers, the elements of the array, separated by ...
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.
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.
Design a queue data structure following the FIFO (First In First Out) principle using only stack instances.
Your task is to complete predefined functions t...
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...
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.
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.
I applied via Referral and was interviewed in Jan 2022. There were 2 interview rounds.
I applied via Referral and was interviewed in Mar 2022. There was 1 interview round.
I applied via Referral and was interviewed in Dec 2021. There was 1 interview round.
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.
The duration of Park Plus interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 34 interviews
Interview experience
based on 185 reviews
Rating in categories
5-6 Yrs
Not Disclosed
1-3 Yrs
Not Disclosed
3-6 Yrs
₹ 12-28 LPA
Sales Manager
63
salaries
| ₹5.5 L/yr - ₹12.3 L/yr |
Assistant Manager
36
salaries
| ₹3.2 L/yr - ₹11.5 L/yr |
Program Manager
26
salaries
| ₹8 L/yr - ₹24.6 L/yr |
Software Development Engineer II
17
salaries
| ₹8.1 L/yr - ₹25 L/yr |
Zonal Manager
16
salaries
| ₹13 L/yr - ₹24 L/yr |
Secure Parking Solutions
Get my Parking
Parkwheels
ParkMate