Get My Parking interview experience Real time questions & tips from candidates to crack your interview

SDE - Intern

Get My Parking
upvote
share-icon
3 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Journey
In the beginning, I started learning about basics concept including array, string, stack, queue and solving questions on hackerrank and after becoming confident in these basic topic I move to the next set of topic including link list, tree, graph, dp, etc. I started practicing these topic on Geeksforgeeks, leetcode, codeforces.
Application story
Application through off campus and entire process is off campus. The first round was online technical test that contain coding question then 2 interview round.
Why selected/rejected for the role?
I was selected for the role because I able to satisfy the interviewer with my answer on all DSA problems as well as Project
Preparation
Duration: 8 months
Topics: Data Structures and Algorithms, OOPS, Operating system, Database, Recursion, Dynamic Programming, React.
Tip
Tip

Tip 1 : Do solving questions on Codeforces, geeksforgeeks, leetcode regularly
Tip 2 : Make a goal to complete particular set of questions every day.
Tip 3 : Focus on project as per your interest

Application process
Where: Linkedin
Eligibility: No
Resume Tip
Resume tip

Tip 1 : Highlights key word in resume 
Tip 2 : Resume must be in proper format
Tip 3 : Modify your resume as per role you applying for.

Interview rounds

01
Round
Easy
Online Coding Test
Duration45 minutes
Interview date18 Oct 2021
Coding problem2

It was at 10 am.

1. Missing Numbers

Easy
28m average time
85% success
0/40
Asked in companies
Thought WorksAdobeAmazon

You are given an array 'ARR' of distinct positive integers. You need to find all numbers that are in the range of the elements of the array, but not in the array. The missing elements should be printed in sorted order.

Example:
If the given array is [4, 2, 9] then you should print "3 5 6 7 8". As all these elements lie in the range but not present in the array.
Problem approach

Step 1: Array only contain value from 0 to N and index from 0 to N-1.
Step 2: If you sort the array in increasing order then index match its value.
Step 3: Travel the array if index does not match its value then return the index.
Step 4: If traveling loop complete and return statement not execute then return N

Try solving now

2. Check If The String Is A Palindrome

Easy
10m average time
90% success
0/40
Asked in companies
SprinklrCIS - Cyber InfrastructureSamsung

You are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols and whitespaces.

Note :

String 'S' is NOT case sensitive.

Example :

Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
Problem approach

Step 1: Initialize i=0 and j=N-1
Step 2: Run while loop until iStep 3: If S[i] not equal to S[j] return true.
Step 4: On completion the loop return false.

Try solving now
02
Round
Medium
Video Call
Duration60 minutes
Interview date25 Oct 2021
Coding problem2

It was at 1 pm at Google meet

1. Delete a Node from Linked List

Moderate
40m average time
67% success
0/80
Asked in companies
QualcommFreshworksSamsung

You have been given a linked list of integers. Your task is to write a function that deletes a node from a given position, 'POS'.

Note :
Assume that the Indexing for the linked list always starts from 0.

If the position is greater than or equal to the length of the linked list, you should return the same linked list without any change.
Illustration :
The following images depict how the deletion has been performed.

Image-I :

Alt txt

Image-II :

Alt txt

Problem approach

Step 1: You can't remove node which you have address, you can do it for next node.
Step 2: Copy the data of next node to current node and point the next of current node to next of next of current node.

Try solving now

2. Web Development Question

Write code using react.js that contain button which give alert by clicking.

Problem approach

Tip 1: Create button using HTML
Tip 2: Button invoked a js function while clicking on button.
Tip 3: Write alert msg to show alert on screen with some message.

03
Round
Medium
Video Call
Duration45 minutes
Interview date27 Oct 2021
Coding problem2

It was at 4 pm on Google meet

1. Project related Question

Describe your react.js mention in resume in detail.

Problem approach

Tip 1: Firstly tell what about overall project.
Tip 2: Divide the project atleast in 4 part and explain each part properly.

2. Puzzle Question

You have manual balance machine and given 9 ball, in which all ball's weight are same except the one whose weight less then other. You need to find the ball whose weight are different from other using machine in such a way that number of times using the machine is less.

Problem approach

We apply ternary search operation.
Step 1 : Divide the 9 ball into 3 equal sets
Step 2 : Compare the weight of first two set, if both are equal then that ball found in 3rd set else that ball is in 1st or 2nd set whose weight is less.
Step 3 : Till now we use balance by 1 time and ball reduce to count 3.
Step 4 : Apply step 2 on these 3 ball again.

So, total answer is 2

Here's your problem of the day

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

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS
907 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3320 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2580 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
15480 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
15338 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
10142 views
2 comments
0 upvotes