Morgan Stanley interview experience Real time questions & tips from candidates to crack your interview

Technology Analyst

Morgan Stanley
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
I applied through the job portal with a referral. I got a referral from one of my friends. I got the test link along with an invitation to a pre-placement talk.
Application story
Applied through a referral taken from a friend - then applied to the career portal opening - a test link was sent with 3 DSA questions to be done in an hour - followed by 3 rounds of interview
Why selected/rejected for the role?
Was not able to clear the first round of interviews - was not able to answer based on Graph An application based question of graph
Preparation
Duration: 2 Months
Topics: Data Structures and Algorithms, OOPs, DBMS, Low level design and Operating systems
Tip
Tip

Tip 1 : Make sure to have thorough knowledge of your projects
Tip 2 : Have strong knowledge of DSA 

Application process
Where: Referral
Eligibility: Resume shortlisting
Resume Tip
Resume tip

Tip 1 : Explain projects and highlight the tech stack used
Tip 2 : Make sure your coding profiles are mentioned

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 minutes
Interview date30 Sep 2022
Coding problem2

1. Decode Ways

Moderate
15m average time
85% success
0/80
Asked in companies
UberAdobeLinkedIn

Given a string ‘strNum’ which represents a number, your task is to find the ways to decode the given string ‘strNum’.

The format of encoding is as follows: ‘A’ - 1, ‘B’ - 2, ‘C’ - 3, ‘D’ - 4, ……………, ‘Z’ - 26.

Encoding is possible in letters from ‘A’ to ‘Z’. There is an encoding between character and number.

Example :

subsequence

‘n = 226’ so we can decode ‘226’ in such a way-

‘BZ = 2-26’, as B maps to 2 and Z maps to 26.

‘BBF = 2-2-6’

‘VF = 22-6’

‘226; can be decoded in three ‘BZ’, ‘BBF’, ‘VF’ possible ways.

Point to be noticed we can’t decode ‘226’ as ‘226’ because we have no character which can directly map with ‘226’ we can only decode numbers from ‘1’ to ‘26’ only.

Try solving now

2. Count the nodes.

Moderate
0/80
Asked in companies
Morgan StanleyAdobeAmazon

Ninja found an old book that has a given tree of numbers. Ninja is interested to find the number of members of that tree that has more children than its parent.

There are ‘N’ nodes in the tree and each node is indexed with a number between 0 to ‘N’-1. The tree is given in a form of an ‘EDGES’ array. Each element of ‘EDGES’ has two values, denoting an edge between that two nodes. The root of the tree is Node 0. Your task is to find the number of nodes having more children than their parent’s node.

For Example
For the given ‘EDGES’ = [ [0,1],[1,2],[1,3],[1,4] ] and ‘N’ = 5.The number of nodes satisfying the condition is 1. Only Node 1 satisfies the given condition.

alt-text

Try solving now
02
Round
Easy
Video Call
Duration45 minutes
Interview date1 Oct 2022
Coding problem1

I started with an introduction and went straight into DSA
 

1. Word Break

Moderate
15m average time
85% success
0/80
Asked in companies
Morgan StanleyMakeMyTripIBM

You are given a list of “N” strings A. Your task is to check whether you can form a given target string using a combination of one or more strings of A.

Note :
You can use any string of A multiple times.
Examples :
A =[“coding”, ”ninjas”, “is”, “awesome”]  target = “codingninjas”
Ans = true as we use “coding” and “ninjas” to form “codingninjas”
Try solving now

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
company logo
Technology Analyst
4 rounds | 11 problems
Interviewed by Morgan Stanley
838 views
0 comments
0 upvotes
company logo
Technology Analyst
5 rounds | 13 problems
Interviewed by Morgan Stanley
933 views
0 comments
0 upvotes
company logo
Technology Analyst
3 rounds | 7 problems
Interviewed by Morgan Stanley
5103 views
0 comments
0 upvotes
company logo
Technology Analyst
2 rounds | 6 problems
Interviewed by Morgan Stanley
982 views
0 comments
0 upvotes