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 Software Developer Interview Questions, Process, and Tips

Updated 30 Aug 2024

Top Park Plus Software Developer Interview Questions and Answers

  • 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 ...read more
  • 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 traversi ...read more
  • Q3. explain hoisting in js

Park Plus Software Developer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Explain hoisting in js
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. Explain closures in js
  • Ans. 

    Closures in JavaScript allow functions to access variables from their outer scope even after the outer function has finished executing.

    • Closures are created when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures can be used to create private variables and functions in JavaScript.

    • Closures can also be used to maintain state in asynchronous operations

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Javascript polyfills

Skills evaluated in this interview

I was interviewed 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

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

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

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding questions around android

Round 2 - Technical 

(3 Questions)

  • Q1. Data structures questions
  • Q2. Binary sort in array
  • Ans. 

    Binary sort is a search algorithm that finds the position of a target value within a sorted array.

    • Binary sort works by repeatedly dividing the array in half and narrowing down the search range.

    • It is more efficient than linear search for large arrays.

    • Example: Sorting an array of strings alphabetically using binary sort.

  • Answered by AI
  • Q3. Android intent and broadcasts

Interview Preparation Tips

Topics to prepare for Parkwheels Software Developer interview:
  • Android
  • Data Structures
Interview preparation tips for other job seekers - Prepare well for dsa and android

Skills evaluated in this interview

I was interviewed 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 was interviewed 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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 Graph Questions Were asked of difficulty medium to hard.

Round 2 - Case Study 

Hackathon round which revolved around multithreading

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

They have their own coding platform. The questions are basically from tree.

Round 2 - Coding Test 

Tree of space question

Round 3 - Technical 

(2 Questions)

  • Q1. Previous round question solution
  • Q2. System design was asked.

Interview Preparation Tips

Topics to prepare for JUSPAY Software Developer interview:
  • tree
  • graph
  • system design
Interview preparation tips for other job seekers - Should have good knowledge of tree ,graph and system design.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

- simple basic ios questions

Round 2 - Technical 

(1 Question)

  • Q1. Asked DSA array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well DSA and code
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA

I was interviewed 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

Park Plus Interview FAQs

How many rounds are there in Park Plus Software Developer interview?
Park Plus interview process usually has 2 rounds. The most common rounds in the Park Plus interview process are Technical.
How to prepare for Park Plus Software 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 AWS, Algorithms, Data Structures, Design Patterns and NoSQL.
What are the top questions asked in Park Plus Software Developer interview?

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

  1. explain hoisting in...read more
  2. explain closures in...read more
  3. javascript polyfi...read more

Tell us how to improve this page.

Park Plus Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Park Plus Software Developer Salary
based on 13 salaries
₹8 L/yr - ₹16 L/yr
26% more than the average Software Developer Salary in India
View more details

Park Plus Software Developer Reviews and Ratings

based on 3 reviews

3.9/5

Rating in categories

4.2

Skill development

3.2

Work-life balance

3.6

Salary

2.8

Job security

3.1

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 3 Reviews and Ratings
Sales Manager
63 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Program Manager
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
16 salaries
unlock blur

₹0 L/yr - ₹0 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