Morgan Stanley 2025 papers
Latest Morgan Stanley placement papers with current year questions
This page collects Morgan Stanley placement papers from 2024 with previous-year questions, solutions, and the 2024 exam pattern. It is useful when you want real drive history: what the OA looked like, which question types repeated, and how solutions were approached. Work through the papers below to build speed and accuracy, then compare against newer 2025 material so your prep matches both established Morgan Stanley patterns and the latest shifts.
| 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
This section contains practice questions styled on Morgan Stanley placement papers 2024 (previous-year pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.
Solution:
Together rate = 1/10. B’s rate = 1/15.
A’s rate = 1/10 − 1/15 = (15−10)/(10×15) = 5/150. Days for A alone = 150/5 = 30 days.
Answer: 30 days
Solution:
SI = (P × R × T)/100 = (8000 × 10 × 2)/100 = ₹1600.
Answer: ₹1600
Solution:
Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.
Answer: 22
Solution:
Let CP = 100. MP = 140. SP after 10% discount = 126.
Profit % = 126 − 100 = 26%.
Answer: 26%
Solution:
Pattern: letter positions: B=2,A=1,T=20
Therefore BAT → 2120.
Answer: 2120
Solution:
Pattern: Primes vs non-primes: 14 and 21 composite; classic key often 14
Odd one out = 14.
Answer: 14
Solution:
‘Optimistic’ means roughly the opposite of Pessimistic.
Answer: Pessimistic
Solution:
Natural order: Q-R-P-S → Hard work is essential to succeed in any field.
Answer: QRPS
Problem Statement: Rotate the array to the right by k steps.
Example:
Input: [1,2,3,4,5,6,7], k = 3Output: [5,6,7,1,2,3,4]Solution (Java):
public void rotate(int[] nums, int k) { k %= nums.length; reverse(nums, 0, nums.length - 1); reverse(nums, 0, k - 1); reverse(nums, k, nums.length - 1);}void reverse(int[] a, int l, int r) { while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }}Time Complexity: O(n)
Space Complexity: O(1)
Problem Statement: Find the contiguous subarray with the largest sum.
Example:
Input: [-2, 1, -3, 4, -1, 2, 1, -5, 4]Output: 6 // [4, -1, 2, 1]Solution (Java):
public int maxSubArray(int[] nums) { int best = nums[0], cur = nums[0]; for (int i = 1; i < nums.length; i++) { cur = Math.max(nums[i], cur + nums[i]); best = Math.max(best, cur); } return best;}Time Complexity: O(n)
Space Complexity: O(1)
Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?
Example:
Input: n = 4Output: 5Solution (Java):
public int climbStairs(int n) { if (n <= 2) return n; int a = 1, b = 2; for (int i = 3; i <= n; i++) { int c = a + b; a = b; b = c; } return b;}Time Complexity: O(n)
Space Complexity: O(1)
Based on candidate experiences from 2024 Morgan Stanley interviews:
2024 Interview Process:
Common 2024 Interview Topics:
2024 Interview Questions Examples:
Behavioral Questions:
Technical/Finance Questions:
Success Tips:
For detailed interview experiences, visit Morgan Stanley Interview Experience page.
Morgan Stanley 2025 papers
Latest Morgan Stanley placement papers with current year questions
Morgan Stanley coding questions
Complete collection of Morgan Stanley coding problems with solutions
Morgan Stanley interview experience
Real interview experiences from successful candidates
Morgan Stanley preparation guide
Comprehensive preparation strategy for Morgan Stanley placement
Morgan Stanley main page
Complete Morgan Stanley placement guide with eligibility, process, and salary
Goldman Sachs · JP Morgan · Bank of America · Wells Fargo · HSBC · Barclays
Practice 2024 papers to understand Morgan Stanley OA pattern and prepare effectively!