This page contains JP Morgan 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 min Medium-Hard Arrays, trees, graphs, DP Mathematical Aptitude 5-7 30 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 array of integers nums and an integer target, return indices of the two numbers such that they add up to target. Example :
Input: nums = [2,7,11,15], target = 9
Solution (Java) :
public int [] twoSum ( int [] nums, int target) {
Map < Integer , Integer > map = new HashMap<>();
for ( int i = 0 ; i < nums.length; i ++ ) {
int complement = target - nums[i];
if (map. containsKey (complement)) {
return new int []{map. get (complement), 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 minutes + 5-7 math questions in 30 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 JP Morgan 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
Technical Phone Screen (45-60 minutes) : Coding problems, algorithm discussions, financial concepts
Onsite Interviews (4-6 rounds, 45-60 minutes each) :
Coding rounds (2-3): Algorithms, data structures, problem-solving
Financial/Technical rounds: DCF models, valuation, financial statements
Behavioral rounds: Company fit, motivation, leadership examples
System Design rounds: For senior roles
Common 2024 Interview Topics:
Coding : Arrays, strings, trees, graphs, dynamic programming
Financial/Technical : DCF models, valuation techniques, financial statements, market trends
Behavioral : Leadership, resilience, initiative, teamwork
Market Knowledge : Recent deals, market trends, banking industry
2024 Interview Questions Examples:
Behavioral Questions:
“Describe a time you took initiative in a team.”
“Why JP Morgan?”
“Give an example of resilience under pressure.”
“Tell me about a time you dealt with failure.”
“Describe a leadership experience.”
“How do you prioritize tasks when managing multiple projects?”
Technical/Finance Questions:
“Walk me through a DCF (Discounted Cash Flow) model.”
“How do you value a company?”
“Explain the difference between enterprise value and equity value.”
“What are the three financial statements and how do they link?”
“If interest rates rise, what’s the impact on banking profits?”
“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?”
Market/Situational Questions:
“What’s a recent deal you found interesting?”
“Where is the market headed?”
“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 banking industry and JP Morgan’s business model
For detailed interview experiences, visit JP Morgan 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 JP Morgan OA papers from 2020-2024 to understand patterns
Time Management : Practice completing 2-3 coding problems in 60 minutes, math questions in 30 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 banking industry, M&A trends, market dynamics
Behavioral Preparation : Prepare examples using STAR format - leadership, resilience, initiative
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
JP Morgan 2025 Papers
Latest JP Morgan placement papers with current year questions
View 2025 Papers →
JP Morgan Coding Questions
Complete collection of JP Morgan coding problems with solutions
View Coding Questions →
JP Morgan Interview Experience
Real interview experiences from successful candidates
Read Experiences →
JP Morgan Preparation Guide
Comprehensive preparation strategy for JP Morgan placement
View Preparation Guide →
JP Morgan Main Page
Complete JP Morgan placement guide with eligibility, process, and salary
View Main Page →
Practice 2024 papers to understand JP Morgan OA pattern and prepare effectively!