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

Updated 7 Aug 2024

Park Plus Backend Developer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

There was a coding test on the spot comprising of 7 mcqs on sys design and computer network and then 2 dsa questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for sys design, computer network and other topics as they are asked.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

10 MCQ on CS fundamentals
2 coding questions medium level

Round 2 - Technical 

(1 Question)

  • Q1. 1. Merge two sorted array 2. Calculate first occurence of one in infinite array of 0 and 1
  • Ans. 

    Merging two sorted arrays and finding the first occurrence of one in an infinite array of 0 and 1.

    • Use the merge sort algorithm to merge two sorted arrays.

    • For finding the first occurrence of one in an infinite array, use binary search with an expanding range.

    • Handle edge cases like empty arrays or infinite array with no occurrence of one.

  • Answered by AI

Skills evaluated in this interview

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, yo ... read more
asked in Simpplr
Q2. Array Sum Calculation Calculate the sum of all elements in an arr ... read more
Q3. Given 9 balls, all of which weigh the same except for one, what i ... read more
asked in Simpplr
Q4. Remove Duplicates from String Problem Statement You are provided ... read more
asked in BlackNGreen
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Top trending discussions

View All
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about Park Plus?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Project-related questions were asked during the interview, and how was your knowledge of JavaScript, including concepts like async/await and callbacks, evaluated
  • Q2. Leetcode 2850 - Min moves to spread stones?
  • Ans. 

    Calculate minimum moves to spread stones evenly across piles.

    • Identify the total number of stones and piles.

    • Calculate the average stones per pile.

    • Determine the difference between current and average stones.

    • Use a greedy approach to minimize moves by balancing piles.

  • Answered by AI

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Ds algo questions
  • Q2. Js basics
  • Q3. React.js

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good you should mainly focus on Ds algo part and basics of Js or other technology for which you are applying .

Interview Questionnaire 

2 Questions

  • Q1. Design Facebook
  • Ans. 

    Designing Facebook involves creating a social networking platform with features like user profiles, news feed, messaging, and more.

    • Create a user registration and login system

    • Develop a news feed algorithm to display relevant content

    • Implement a messaging system for users to communicate

    • Design a user profile page with customizable options

    • Incorporate features like groups, events, and pages

    • Ensure scalability and security of ...

  • Answered by AI
  • Q2. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Iterative approach using three pointers

    • Recursive approach with base case and recursive call

    • In-place reversal using stack

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare system design fhf rhf rhd r rhrhf rhfbt rhrif jdbtj djht jdbbtb fjjt

Skills evaluated in this interview

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

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is a multithreaded environment, and how would you develop an application that can run in that environment without any issues?
  • Ans. 

    A multithreaded environment allows multiple threads to execute concurrently, improving application performance and responsiveness.

    • Thread Management: Use thread pools to manage threads efficiently, reducing overhead from frequent thread creation and destruction.

    • Synchronization: Implement synchronization mechanisms (like mutexes or semaphores) to prevent race conditions when accessing shared resources.

    • Concurrency Control...

  • Answered by AI
  • Q2. What locking mechanisms are used in a multithreaded environment to prevent deadlock in critical sections?
  • Ans. 

    Locking mechanisms in multithreaded environments prevent deadlock by managing access to critical sections effectively.

    • Mutexes: A mutual exclusion lock that allows only one thread to access a resource at a time, preventing race conditions.

    • Semaphores: A signaling mechanism that controls access to a resource by maintaining a count, allowing multiple threads to access it up to a limit.

    • Read/Write Locks: These allow multiple...

  • Answered by AI
Are these interview questions helpful?
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
Not Selected

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Q2. First and last index of a particular element in an array

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Three 2d matrix questions in first round from leetcode. One was simple dp question. Two questions in second round one questions was on trees. One questions was of strings. In third round which was engineer...

Park Plus Interview FAQs

How many rounds are there in Park Plus Backend Developer interview?
Park Plus interview process usually has 1-2 rounds. The most common rounds in the Park Plus interview process are Coding Test and Technical.
How to prepare for Park Plus Backend Developer 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 Python, AWS, Algorithms, Data Structures and Django.

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.6
 • 56 Interviews
Tokopedia Interview Questions
4.1
 • 26 Interviews
CoLive Interview Questions
3.3
 • 25 Interviews
JUSPAY Interview Questions
3.3
 • 23 Interviews
AstroTalk Interview Questions
3.4
 • 23 Interviews
Meritto Interview Questions
3.6
 • 23 Interviews
Furlenco Interview Questions
3.5
 • 21 Interviews
Melorra Interview Questions
3.1
 • 20 Interviews
View all
Park Plus Backend Developer Salary
based on 5 salaries
₹8.5 L/yr - ₹13.3 L/yr
17% more than the average Backend Developer Salary in India
View more details
Sales Manager
91 salaries
unlock blur

₹6 L/yr - ₹12.3 L/yr

Assistant Manager
76 salaries
unlock blur

₹4 L/yr - ₹11.5 L/yr

Zonal Manager
30 salaries
unlock blur

₹11 L/yr - ₹19.5 L/yr

Software Developer
23 salaries
unlock blur

₹8 L/yr - ₹18 L/yr

Program Manager
23 salaries
unlock blur

₹7.5 L/yr - ₹21.3 L/yr

Explore more salaries
Compare Park Plus with

MagicPin

2.5
Compare

Awign Enterprises

3.8
Compare

Nestaway

3.8
Compare

Ketto

4.0
Compare
write
Share an Interview