This page contains Morgan Stanley placement papers from 2024 with previous year online assessment questions, solutions, and exam patterns.
Section Questions Time Difficulty Focus Areas Coding Problems 2-3 60-90 min Medium-Hard Arrays, trees, graphs, DP Mathematical Aptitude 5-7 15-20 min Medium Probability, statistics, quantitative
Total : 2-3 coding + 5-7 math, 90 minutes
Platform : HackerRank or Codility
Languages Allowed : C, C++, Java, Python
Success Rate : ~15-20% cleared OA and advanced to interviews
Q1: Given an integer array nums, return the length of the longest strictly increasing subsequence. Example :
Input: nums = [10,9,2,5,3,7,101,18]
Solution (Java) :
public int lengthOfLIS ( int [] nums) {
int [] dp = new int [nums.length];
for ( int i = 1 ; i < nums.length; i ++ ) {
for ( int j = 0 ; j < i; j ++ ) {
dp[i] = Math. max (dp[i], dp[j] + 1 );
maxLen = Math. max (maxLen, dp[i]);
Time Complexity : O(n²)
Space Complexity : O(n)
Coding Section is Critical : Must solve 2-3 coding problems correctly to advance
Mathematical Aptitude : Strong emphasis on probability, statistics, and quantitative reasoning
Time Management : 2-3 coding problems in 60-90 minutes + 5-7 math questions in 15-20 minutes requires excellent speed
Success Rate : Only 15-20% cleared OA and advanced to interviews
Platform : HackerRank or Codility
Focus Areas : Arrays, trees, graphs, dynamic programming, probability, statistics
Based on candidate experiences from 2024 Morgan Stanley interviews:
2024 Interview Process:
Online Assessment (90 minutes) : 2-3 coding problems + 5-7 mathematical aptitude questions
HireVue Assessment : Video-based behavioral and technical questions
First Round Interview (45-60 minutes) : With an Associate - technical and behavioral questions
Second Round Interview (45-60 minutes) : With a VP - deeper technical and fit questions
Final Round Interview (45-60 minutes) : With an MD - final assessment and fit
Common 2024 Interview Topics:
Coding : Arrays, strings, trees, graphs, dynamic programming
Financial/Technical : Financial modeling, valuation techniques, market trends
Behavioral : Problem-solving, difficult situations, teamwork, motivation
Industry Knowledge : Investment banking, market trends, recent deals
2024 Interview Questions Examples:
Behavioral Questions:
“Describe investment banking to someone who’s never heard of it.”
“What is a difficult situation you’ve been in in the past?”
“Describe a time you took initiative in a team.”
“Tell me about a time you dealt with failure.”
“How do you stay motivated?”
“Describe a leadership experience.”
Technical/Finance Questions:
“Walk me through a DCF (Discounted Cash Flow) model.”
“How do you value a company?”
“What are the three financial statements and how do they link?”
“Walk me through how an acquisition works.”
“What trends are impacting the M&A market right now?”
“What is EBITDA and why is it useful?”
“Explain a financial crisis and how you’d respond.”
“If you spot an error in a team’s analysis, what’s your next step?”
Success Tips:
Strong coding performance is essential - solve problems optimally
Practice financial modeling - DCF, valuation, financial statements
Prepare behavioral examples using STAR format
Stay updated on recent deals and market trends
Practice HireVue video interviews
Understand investment banking industry and Morgan Stanley’s business model
Be ready for questions at different levels (Associate, VP, MD)
For detailed interview experiences, visit Morgan Stanley Interview Experience page.
Master Coding Fundamentals : Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
Practice Mathematical Aptitude : Strong focus on probability, statistics, quantitative reasoning
Financial Modeling : Learn DCF models, valuation techniques, financial statements
Practice Previous Year Papers : Solve Morgan Stanley OA papers from 2020-2024 to understand patterns
Time Management : Practice completing 2-3 coding problems in 60-90 minutes, math questions in 15-20 minutes
LeetCode Practice : Solve 200+ LeetCode problems focusing on arrays, strings, trees, graphs (medium-hard difficulty)
HireVue Practice : Practice video-based interviews and behavioral questions
Financial Knowledge : Understand investment banking, M&A trends, market dynamics
Behavioral Preparation : Prepare examples using STAR format - leadership, resilience, problem-solving
Mock Tests : Take timed practice tests to improve speed and accuracy
Stay Updated : Read financial publications and stay updated on recent deals and market trends
Morgan Stanley 2025 Papers
Latest Morgan Stanley placement papers with current year questions
View 2025 Papers →
Morgan Stanley Coding Questions
Complete collection of Morgan Stanley coding problems with solutions
View Coding Questions →
Morgan Stanley Interview Experience
Real interview experiences from successful candidates
Read Experiences →
Morgan Stanley Preparation Guide
Comprehensive preparation strategy for Morgan Stanley placement
View Preparation Guide →
Morgan Stanley Main Page
Complete Morgan Stanley placement guide with eligibility, process, and salary
View Main Page →
Practice 2024 papers to understand Morgan Stanley OA pattern and prepare effectively!