Monster India interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Monster India
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Data Structure and algorithms, DBMS, System Design, Core and advanced Java, Computer Networks (not much), Operating Systems
Tip
Tip

Tip 1 : Make you Data Structure and algorithms , Problem solving strong ( use to do some dsa problems on code studio and leetcode daily.
Tip 2 : Practiced Quality questions and mostly asked questions list available on codestudio( used company tags and topic tags) as quality matters more than quantity of questions .
Tip 3 : Give mock interviews, this really helped me as it gives you clearity and builds confidence.
Tip 4 : Read respective company’s interview experiences available on codestudio and other websites before going to actual interview, as this gives you idea about level of interviews and you can prepare beforehand.
Tip 5 : after solving dsa problem .Try to look in discussion section too as you can get more optimised or more efficient approach used by others to solve the problem.
Tip 6 : Prepare important concepts from Operating system,DBMS,System design too as that might also be asked.
Tip 7 : Do atleast 2 quality projects.
Not a Tip But : Lot of quality content available online, whenever felt like stuck with some concepts take help from senior or colleagues ( I use to watch coding ninja shorts by parikh jain whenever felt demotivated or stuck with concepts)

Application process
Where: Other
Eligibility: 1+year of experience in java
Resume Tip
Resume tip

Tip 1 : Have a concise resume , don't fill your resume with unnecessary details like your address, relationship status etc.
Tip 2 : Resume should not be more than 2 pages( try to make it very concise in 1 page)

Interview rounds

01
Round
Easy
Video Call
Duration45 Minutes
Interview date12 Jan 2022
Coding problem3

This round was mainly focused on DSA and Java, spring boot

1. Remove Consecutive Duplicates From String

Moderate
22m average time
0/80
Asked in companies
MeeshoIntuitSAP Labs

You are given a string 'STR' consisting of lower and upper case characters. You need to remove the consecutive duplicates characters, and return the new string.


Note :
You don't have to print anything, it has already been taken care of. Just implement the given function.
Problem approach

It is a simple string question, that can be solved by recursive and iterative. The idea is to check whether the current character is equal to the next character. If the current character is equal to the next character, we will ignore it; when it is not equal, we will add it to our final string.It can be also solved with help of Hashset but that will need extra space.

Try solving now

2. Valid Parentheses

Easy
10m average time
80% success
0/40
Asked in companies
OracleAmerican ExpressPayPal

You're given a string 'S' consisting of "{", "}", "(", ")", "[" and "]" .


Return true if the given string 'S' is balanced, else return false.


For example:
'S' = "{}()".

There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
Problem approach

It is standard stack problem which can be solved using stack. Traverse the Expression string and keep pushing characters for open braces and if the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from the stack and if the popped character is the matching starting bracket then fine else brackets are not balanced. After complete traversal, if there is some starting bracket left in the stack , then the expression is not balanced.

Try solving now

3. Technical Questions

What is immutability?
Why strings are immutable in Java?
What is Hashing?
How hashMap is implemented internally. what updates came with java 8 in HashMap.?
Difference between spring and spring boot?
Java 8 new features.
OOPs concepts and use in projects.

Problem approach

think out loud. Ask the interviewer if you have any questions about the problem statement given.

02
Round
Medium
Video Call
Duration50 minutes
Interview date12 Jan 2022
Coding problem1

It was managerial round

1. Technical Questions

Asked me about my introduction and My background.
Asked me about monster com 
Asked me about projects i worked on in my previous organisation and tech stack I used.
We discussed HLD of projects i did.
why spring boot is used , advantages.
Questions on Hibernate and JPA framework.
Discussed about microservices and its advantages.
How would i implement a Cache for application.
Situations when i worked in pressure and how i handled it.
We discussed different projects and opportunities in monster com

Problem approach

Read about the company before going for an interview.

03
Round
Easy
HR Round
Duration15 Minutes
Interview date14 Jan 2022
Coding problem1

It was standard HR Round

1. Basic HR Questions

Asked me about my introduction and my experience Why are you leaving current organisation.? 

Why should we hire you? 

Offers in hand? 

Why do you want to join our organisation? 

What is your expected CTC?

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
3319 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 - 1
5 rounds | 12 problems
Interviewed by Amazon
114579 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
57824 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
34961 views
7 comments
0 upvotes