Park+ interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Park+
upvote
share-icon
3 rounds | 7 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Data Structure and algorithms, Database Management System, Operating System, Problem Solving, Computer Networks
Tip
Tip

Tip 1 : Problem Solving is really important - Leetcode, GFG, Codechef
Tip 2 : DBMS Knowledge like Indexing, ACID Property etc.
Tip 3 : OS Knowledge - Deadlock, Paging

Application process
Where: Campus
Eligibility: Above 7 CGPA, Mush have basic Python knowledge
Resume Tip
Resume tip

Tip 1 : No need to make your resume fancy
Tip 2 : Single Page Resume is best

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 minutes
Interview date29 Oct 2021
Coding problem2

1 hour , 20 MCQ + 1 coding question 

1. MCQ Questions

Python based questions.

 

Number Of MCQs - 20

2. House Robber

Moderate
35m average time
80% success
0/80
Asked in companies
Park+India TodayGoogle inc

Mr. X. is a professional robber planning to rob houses along a street. Each house has a certain amount of money hidden.

Meanwhile, adjacent houses have a security system connected, and it will automatically contact the police if two neighboring houses were broken into the same night.

You are given an array/list of non-negative integers 'A' representing the amount of money hidden at each house. Your task is to return the maximum amount of money Mr. X can rob tonight without alerting the police.

Example:
Input: [1,2,3,1]

Output: 4

Mr. X. can rob the first house and the third house, total money = 1 + 3.
Hence, the total money robbed by Mr. X. is 4.
Try solving now
02
Round
Easy
Video Call
Duration60 minutes
Interview date2 Nov 2021
Coding problem2

Time - 4-5 pm
Environment - great
Interviewer was good

1. Merge k sorted lists

Hard
25m average time
65% success
0/120
Asked in companies
AmazonIntuitPayPal

Given 'k' sorted linked lists, each list is sorted in increasing order. You need to merge all these lists into one single sorted list. You need to return the head of the final linked list.


For example:
Input:
3
3
4 6 8
3
2 5 7 
2
1 9

Output:
1 2 4 5 6 7 8 9 

Explanation:
First list is: 4 -> 6 -> 8 -> NULL
Second list is: 2 -> 5 -> 7 -> NULL
Third list is: 1 -> 9 -> NULL
The final list would be: 1 -> 2 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9 -> NULL
Problem approach

1) Try to think about merge 2 linked list and then apply that for rest
2) Then interviewer asked me for optimization 
3) Then i gave solution with logically choosing the linked list and then merge

Try solving now

2. Jump Game

Moderate
15m average time
85% success
0/80
Asked in companies
Deutsche BankGoldman SachsAmazon

You have been given an array 'ARR' of ‘N’ integers. You have to return the minimum number of jumps needed to reach the last index of the array i.e ‘N - 1’.


From index ‘i’, we can jump to an index ‘i + k’ such that 1<= ‘k’ <= ARR[i] .


'ARR[i]' represents the maximum distance you can jump from the current index.


If it is not possible to reach the last index, return -1.


Note:
Consider 0-based indexing.
Example:
Consider the array 1, 2, 3, 4, 5, 6 
We can Jump from index 0 to index 1
Then we jump from index 1 to index 2
Then finally make a jump of 3 to reach index N-1

There is also another path where
We can Jump from index 0 to index 1
Then we jump from index 1 to index 3
Then finally make a jump of 2 to reach index N-1

So multiple paths may exist but we need to return the minimum number of jumps in a path to end which here is 3.
Try solving now
03
Round
Easy
Video Call
Duration60 minutes
Interview date8 Nov 2022
Coding problem3

Timing -1 hr

1. System Design Question

Design a snake ladder game.

Problem approach

Tip 1 : Think simple design with best possible data structure
Tip 2 : Discuss your approach with interviewer
Tip 3 : Try to handle every use case

2. SQL Question

From the given employee table, find second highest salary using SQL.

3. DBMS

Questions about indexing and ACID Property

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
SDE - 1
2 rounds | 3 problems
Interviewed by Park+
1571 views
0 comments
0 upvotes
SDE - 1
2 rounds | 4 problems
Interviewed by Park+
1137 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Park+
1146 views
0 comments
0 upvotes
SDE - 1
3 rounds | 7 problems
Interviewed by Park+
510 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
2 rounds | 3 problems
Interviewed by BNY Mellon
6366 views
3 comments
0 upvotes
company logo
SDE - 1
3 rounds | 6 problems
Interviewed by BNY Mellon
0 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 5 problems
Interviewed by CIS - Cyber Infrastructure
2198 views
0 comments
0 upvotes