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
3.0

based on 168 Reviews

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 Aahad and Harshit always have fun by solving problems. Harshit took a sorted array consisting of distinct integers and rotated it clockwise ...read more
  • Q2. Zigzag Binary Tree Traversal Given a binary tree, return the zigzag level order traversal of the nodes' values of the given tree. Zigzag traversal means starting from lef ...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

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 29 May 2022

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

    Aahad and Harshit always have fun by solving problems. Harshit took a sorted array consisting of distinct integers and rotated it clockwise by an unknown amount. For example,...

  • Ans. Brute Force Approach

    The idea here is to do a linear approach which apparently is a brute force way to do this.

    • Visit every element one by one.
    • Check if the current element that you are looking at is the key value that needs to be searched. If the element is found, return the index at which you find it.
    • Once all the elements are visited and you don't find the key-value, return -1.
    Space Complexity: O(1)Explanation:

    O(1)

    &nbs...

  • Answered by CodingNinjas
  • Q2. Zigzag Binary Tree Traversal

    Given a binary tree, return the zigzag level order traversal of the nodes' values of the given tree. Zigzag traversal means starting from left to right, then right to left ...

  • Ans. Iterative Approach

    Our very basic intuition is that we are going to traverse the given binary tree using level order traversal where we just need to modify one thing that for every alternate level we need to reverse the order that level. 

     

    Steps are as follows:

     

    1. Create an empty queue.
    2. For each node, first, the node is visited and then it’s child nodes are added in the queue if they exist(First in first out).
    3. ...
  • Answered by CodingNinjas

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 SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

Interview questions from similar companies

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Solving normal Puzzles to test aptitude.

Round 2 - Coding Test 

Sample app was asked to create.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well domain specfic.
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

That would be online Test with 12 questions MCQ and 1 coding question. 12 MCQ questions would be related to technology and bascis, coding question would alos be basic

Round 2 - Technical 

(5 Questions)

  • Q1. All Technical related, mostly related to swift ARC, Queues, Threading, unit test cases
  • Q2. Concepts of memory ARC in Swift
  • Ans. 

    Memory ARC in Swift manages memory by automatically deallocating objects when they are no longer needed.

    • ARC stands for Automatic Reference Counting

    • ARC keeps track of how many references exist to an object

    • When the reference count drops to zero, the object is deallocated

    • Weak references are used to avoid retain cycles

  • Answered by AI
  • Q3. Generics in Swift
  • Ans. 

    Generics in Swift allow you to write flexible, reusable functions and types that can work with any type.

    • Generics enable you to write functions and types that can work with any type, without specifying the actual type until the function or type is used.

    • You can define generic functions, methods, classes, structures, and enumerations in Swift.

    • Example: func swapTwoValues(_ a: inout T, _ b: inout T) { let temp = a; a = b; b...

  • Answered by AI
  • Q4. MVC vs MVVM in swift
  • Ans. 

    MVC focuses on separating data, presentation, and user interaction, while MVVM adds a ViewModel to handle logic and data binding.

    • MVC stands for Model-View-Controller, where the controller handles user input, the model manages data, and the view displays the data. Example: UIKit in iOS development.

    • MVVM stands for Model-View-ViewModel, where the ViewModel acts as an intermediary between the model and view, handling data ...

  • Answered by AI
  • Q5. Optionals, Protocols and Delegates, LifeCycle
Round 3 - Assignment 

An app with Login screen with authentication in MVVM

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

I applied via campus placement at National Institute of Technology,(NIT), Delhi 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
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
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

Leetcode easy medium question

Round 2 - HR 

(1 Question)

  • Q1. Why you want to join biofourmis

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 Salary
based on 10 salaries
₹8 L/yr - ₹15.5 L/yr
24% 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 & Benefits

2.7

Job Security

2.9

Company culture

3.6

Promotions/Appraisal

3.7

Work Satisfaction

Explore 3 Reviews and Ratings
Sales Manager
63 salaries
unlock blur

₹5.5 L/yr - ₹12.3 L/yr

Assistant Manager
34 salaries
unlock blur

₹3.2 L/yr - ₹11 L/yr

Program Manager
26 salaries
unlock blur

₹8 L/yr - ₹24.6 L/yr

Zonal Manager
17 salaries
unlock blur

₹13 L/yr - ₹22 L/yr

Business Analyst
16 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Explore more salaries
Compare Park Plus with

Secure Parking Solutions

4.2
Compare

Get my Parking

4.0
Compare

Parkwheels

3.1
Compare

ParkMate

5.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview