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

Updated 8 Dec 2023

Park Plus Frontend Developer Intern Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Not Selected
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 

(4 Questions)

  • Q1. What is box model?
  • Ans. 

    The box model is a concept in CSS that describes how elements are rendered on a web page.

    • The box model consists of four components: content, padding, border, and margin.

    • The content refers to the actual content of the element, such as text or images.

    • The padding is the space between the content and the border.

    • The border is a line that surrounds the content and padding.

    • The margin is the space outside the border, separatin...

  • Answered by AI
  • Q2. Difference between let and var?
  • Ans. 

    let and var are both used to declare variables in JavaScript, but they have some key differences.

    • let is block-scoped, while var is function-scoped

    • let variables are not hoisted, while var variables are hoisted

    • let variables can be reassigned, while var variables can be redeclared

    • let variables have temporal dead zone, while var variables do not

  • Answered by AI
  • Q3. What is map, reduce and filter?
  • Ans. 

    map, reduce, and filter are higher-order functions in JavaScript used to manipulate arrays.

    • map: creates a new array by applying a function to each element of the original array

    • reduce: applies a function to an accumulator and each element in the array, reducing it to a single value

    • filter: creates a new array with all elements that pass a test implemented by a provided function

  • Answered by AI
  • Q4. Some easy DSA questions related to array and strings.

Interview Preparation Tips

Topics to prepare for Park Plus Frontend Developer Intern interview:
  • HTML
  • DSA
  • CSS
  • Javascript
Interview preparation tips for other job seekers - The interviewer is very bad. I have given correct answers for most of the questions still rejected me. I have read some negative experiences related to interview but now I myself has experienced it. Also after the interview HR didn't reply.
If anyone from the company reading this kindly improve your hiring process. This is important for the person who is giving the interview. Don't take it so lightly.

Skills evaluated in this interview

Top trending discussions

View All
Salary Discussions, Hike & Promotions
2w
a senior executive
GF salary Vs. My salary
Me and my gf have been dating for 5 years. Back in 2020, I started my career with a package of ₹5 LPA. Over the years, I’ve reached ₹22 LPA in 2025. She started her journey with ₹3 LPA(2020) and is now earning ₹8 LPA(2025). We’ve been in a live-in relationship for around 2 years, and the idea was to share expenses equally. But, equal sharing never really happened. If we go to a café she likes, especially with friends, I will pay the entire bill. We only split the house rent and grocery bills. I told her lots of time to cut down these costly cafe expenses or earn more money, increase your package, study and work hard, but.....she is now in her comfort zone. Being from a tech background, I have seen people upgrade their skills and package for a good life in metro cities. I am ready to support her in her studies, but she is like I am earning enough for myself.... No, you are not. I love her, but I don't know how to overcome this issue between us. Please suggest!
Got a question about Park Plus?
Ask anonymously on communities.

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

Frontend Developer Intern Interview Questions Asked at Other Companies

Q1. Last Stone Weight Problem Explanation Given a collection of stone ... read more
asked in Samsung
Q2. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Samsung
Q3. Cousins of a Given Node in a Binary Tree Given a binary tree with ... read more
asked in Trell
Q4. Find the Second Largest Element Given an array or list of integer ... read more
asked in Samsung
Q5. Maximum Sum Path in a Binary Tree Your task is to determine the m ... read more
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

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
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
Are these interview questions helpful?
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.

I appeared for an interview 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 appeared for an interview 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

Park Plus Interview FAQs

How many rounds are there in Park Plus Frontend Developer Intern interview?
Park Plus interview process usually has 2 rounds. The most common rounds in the Park Plus interview process are Resume Shortlist and Technical.
What are the top questions asked in Park Plus Frontend Developer Intern interview?

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

  1. What is map, reduce and filt...read more
  2. difference between let and v...read more
  3. What is box mod...read more

Tell us how to improve this page.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Easy 100%
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.6
 • 57 Interviews
Tokopedia Interview Questions
4.1
 • 26 Interviews
CoLive Interview Questions
3.3
 • 25 Interviews
Meritto Interview Questions
3.5
 • 24 Interviews
JUSPAY Interview Questions
3.3
 • 23 Interviews
AstroTalk Interview Questions
3.4
 • 23 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
Nestaway Interview Questions
3.8
 • 21 Interviews
View all
Sales Manager
90 salaries
unlock blur

₹5.2 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

₹10.6 L/yr - ₹21.9 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.6
Compare

Awign Enterprises

3.8
Compare

Nestaway

3.8
Compare

Ketto

4.1
Compare
write
Share an Interview