Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by JPMorgan Chase & Co. Team. If you also belong to the team, you can get access from here

JPMorgan Chase & Co. Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 5.8k Reviews

Filter interviews by

JPMorgan Chase & Co. Interview Questions, Process, and Tips for Freshers

Updated 8 Jan 2025

Top JPMorgan Chase & Co. Interview Questions and Answers for Freshers

View all 63 questions

JPMorgan Chase & Co. Interview Experiences for Freshers

Popular Designations

106 interviews found

I was interviewed before Dec 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

  • Q1. Populating Next Right Pointers In Each Node

    You have been given a complete binary tree of ‘N’ nodes. The nodes are numbered 1 to ‘N’.

    You need to find the ‘next’ node that is immediately right in the lev...

  • Ans. BFS approach

    The idea here is to Perform BFS while maintaining all nodes of the same level together, which can be done by storing nodes of the same level in a queue data structure, then for a particular level, we start popping nodes one by one and set the ‘next’ pointer of the previously popped node to the current node.

     

    Example :

     

    • Perform BFS  and maintain a queue for all nodes at the current level.
    • Now, mo...
  • Answered Anonymously
Round 2 - HR 

Round duration - 10 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria90% above in 12th standardJPMorgan Chase & Co. interview preparation:Topics to prepare for the interview - Array, LinkedList, Stack and queue, Dynamic Programming, oopsTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : have a good resume highlighting your extra curricular
Tip 2 : explain in detail as if they know nothing about you
Tip 3 : be honest

Application resume tips for other job seekers

Tip 1 : Have a good format (use novaresume)
Tip 2 : be real in it

Final outcome of the interviewRejected

Skills evaluated in this interview

Top JPMorgan Chase & Co. Software Developer Intern Interview Questions and Answers

Q1. Reverse Words in a StringYou are given a string of length N. You need to reverse the string word by word. There can be multiple spaces between two words and there can be leading or trailing spaces but in the output reversed string you need ... read more
View answer (2)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

R&D Intern Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2021

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 70 minutes
Round difficulty - Medium

It had two parts. First part had MCQ questions and the second part had two coding questions.

  • Q1. Minimum Depth Of Binary Tree

    You have been given a Binary Tree of integers, find the minimum depth of this Binary Tree. The minimum depth of a Binary Tree is the number of nodes along the shortest path fro...

  • Ans. Depth-First-Search

    We can write a recursive solution for finding the minimum depth in a Binary Tree. The idea here is to first find the minimum depths of left and right subtrees and then the minimum depth of the current node will be 1 + min(minDepthLeftSubtree, minDepthRightSubtree).

     

    Here is the complete algorithm:

     

    • Traverse in given Binary Tree.
    • If currentNode is NULL, terminate recursion (return 0)
    • If currentNo...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Questions about data structures and Machine learning were asked.

  • Q1. Pascal's Triangle

    You are given an integer N. Your task is to return a 2-D ArrayList containing the pascal’s triangle till the row N.

    A Pascal's triangle is a triangular array constructed by summing ...

  • Ans. Recursive Solution

    The idea is to use recursion to get the value of the coefficients we will create a helper function CALPASCAL which will take row and entry as its input parameters and we call this function in the main function of PRINTPASCAL.

    • Inside the function CALPASCAL if the row is 0 or the entry is equal to row then we will just return 1.
    • Else we will return the sum of adjacent previous row value that is CALPASCAL(...
  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

Questions related to data structures were asked

  • Q1. Sort Elements By Frequency

    You are given a list of a repeated set of integers. Your task for the problem is to return a list of the given elements in decreasing sorted order of their frequency of repetitio...

  • Ans. Sorting With Comparator

    The idea here is to keep a maintained list of the counts of the various elements given in the list and sort it in descending order based on their frequency counts and now keep the index values of the items and order them in ascending order. 

    The algorithm will be-

    1. The idea is to write a custom comparison method to solve this problem. Let the two elements to be compared are ‘x’ and ‘y’. Then.
      1. If...
  • Answered Anonymously
Round 4 - HR 

Round duration - 40 minutes
Round difficulty - Medium

Questions about my projects and behavioural questions were asked

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as R&D Intern in MumbaiEligibility criteria7.5 CgpaJPMorgan Chase & Co. interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating Systems, Computer Networks, DBMS, OOPSTime required to prepare for the interview - 8 MonthsInterview preparation tips for other job seekers

Tip 1 : Data Structures is most important.
Tip 2 : Practice coding problems.

Application resume tips for other job seekers

Tip 1 : Mention good projects 
Tip 2 : Have complete knowledge of whatever you are mentioning

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

the test started at 4 in the evening. the test was conducted in the college only and all the questions were very basic .

  • Q1. Fastest Horse

    There are ‘N’ horses running in ‘N’ different lanes numbered from 1 to ‘N’. You are given an array “FINISHTIME” containing ‘N’ integers where “FINISHTIME[i]” represents the time taken by the ...

  • Ans. Brute Force

    For each query, we can simply loop between ‘L’ and ‘R’ and store the minimum time taken by a horse to complete the race in a variable, and return the value stored in that variable.

     

    Algorithm for Each Query:

     

    • Store the minimum time to complete the race in a variable ‘MINIMUMTIME’ and initialize it with a large enough number, in this case, 10^ 9 is sufficient.
    • Iterate from ‘L’ to ‘R’ and if the time ta...
  • Answered Anonymously
  • Q2. Intersection of Linked List

    You are given two Singly Linked List of integers, which are merging at some node of a third linked list.

    Your task is to find the data of the node at which merging starts. If ...

  • Ans. Brute Force
    • For each node in the first list, traverse the entire second list
    • Check if any node in the second list coincides with the first list
      • If it does, return that node’s data
      • If it doesn’t, return -1
    Space Complexity: O(1)Explanation:

    O(1)

     

    Since we only use constant space.

    Time Complexity: O(m*n) - For 2d arraysExplanation:

    O(N * M), where N and M are the lengths of the first and second linked lists respectively.&n...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maulana Azad National Institute of Technology, Bhopal. I applied for the job as SDE - Intern in MumbaiEligibility criteria7 aboveJPMC interview preparation:Topics to prepare for the interview - Dynamic Programming, OOPS, Data Structures, Graphs, Trees, DBMS, basics of developmentTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : practice at least the most common and frequent question of each topic from the data structure and algorithm design
Tip 2 : Have at least one project made by you which uses databases
Tip 3 : give practice test to develop speed and accuracy on different platforms

Application resume tips for other job seekers

Tip 1 : Resume should be technical skills oriented or if you have a lot of projects should focus on that.
Tip 2 : It should be clean and do not add things that are not relevant to the job you are applying for.
Tip 3 : Resume should be concise and highlight the important points.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top JPMorgan Chase & Co. Software Developer Intern Interview Questions and Answers

Q1. Reverse Words in a StringYou are given a string of length N. You need to reverse the string word by word. There can be multiple spaces between two words and there can be leading or trailing spaces but in the output reversed string you need ... read more
View answer (2)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Quantitative Research Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was an MCQ + Coding round

18 questions of Logical Reasoning
5 questions of Mathematics
7 questions of Subjects
2 coding questions

  • Q1. Minimum travel Cost

    Ninjaland is a country having 'N' states numbered from 1 to 'N'. These 'N' states are connected by 'M' bidirectional roads. Each road connects to differe...

  • Ans. 

    Used prims minimum spanning tree algorithm.

  • Answered Anonymously
  • Q2. Shortest path in an unweighted graph

    The city of Ninjaland is analogous to the unweighted graph. The city has ‘N’ houses numbered from 1 to ‘N’ respectively and are connected by M bidirectional roads. If a...

  • Ans. BFS
    • Store all the edges in the form of an adjacency list ADJ. if ADJ[X][j] = Y which means there is an edge from X to Y.
    • Declare a queue Q and push S in it and also declare two vectors VISITED and DISTANCE which will store whether a house is visited or not and what is a distance of the house from house S respectively.
    • We will also store the PARENT, that store the node from which we will reach the current node. It will hel...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The interviewer was kind, chill, and helping. The interview was on Zoom.

  • Q1. Optimal Strategy for a Game

    You and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line.

    The rule of the game is as follows:

    1. Each coin has ...
  • Ans. Recursive Brute Force
    • Suppose it's your turn and you are left with coins in the index range ['I', ‘J’] (other coins have already been picked up in previous turns). You have the option to pick either ith or jth coin. Of these two options, you would select the one which maximizes your winning amount.
      • If you pick the ith coin. The other player will have the option to pick ('I'+1)th or ‘J’th coin.
        → If the other player picks ...
  • Answered Anonymously
  • Q2. Chocolate Bar

    You are given a chocolate bar in the form of a grid consisting of N x M pieces of chocolate. Your task is to take out exactly ‘K’ pieces of chocolate by cutting the chocolate bar either horiz...

  • Ans. 

    It depends if the value of n and m is odd or even.

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The interviewer was kind, chill, and helpful. The interview was on Zoom.

  • Q1. Counting Pairs

    You are given a positive integer N and an equation 1/X + 1/Y = 1/N

    You need to determine the count of all possible positive integral solutions (X, Y) for the above equation.

    Note:

    1. X ...
  • Ans. Naive Solution (Time limit Exceed)
    • Given equation can be simplified as follows:
      • 1/X + 1/Y = 1/N
      • 1/X = 1/N - 1/Y
      • 1/X = (Y - N)/(N*Y)
      • X = (N*Y)/(Y - N)
      • X = (N*Y - N*N + N*N)/(Y-N)
      • X = (N(Y-N) + N*N)/(Y-N)
      • X = N + (N*N)/(Y-N)
    • To identify the total number of pairs satisfying the given equation, iterate over all the possible values of X and Y and increment a counter, where current X and Y values satisfy the above equation.
    • This will ...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Quantitative Research in MumbaiEligibility criteriaAbove 7 CGPAJP Morgan interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, DBMS, Probability, StatisticsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Having good mathematical skills and a good grasp of Probability will help you a lot.
Tip 2 : Have all your basics cleared of OOPS and data structures.
Tip 3 : Practice coding questions regularly to have good coding skills.
Tip 4 : Have at least one good project where you used Machine Learning or played with data.
Tip 5 : Solve a lot of puzzles either on geeks for geeks or from any newspaper or magazine but this is necessary.

Application resume tips for other job seekers

Tip 1 : Have at least one good project where you used Machine Learning or played with data.
Tip 2 : You must know everything thoroughly that you've written on your resume.
Tip 3 : Keep it simple, clean, and readable.

Final outcome of the interviewSelected

Skills evaluated in this interview

JPMorgan Chase & Co. interview questions for popular designations

 Associate

 (65)

 Software Engineer

 (40)

 Analyst

 (36)

 Software Developer

 (29)

 Senior Associate

 (26)

 Team Lead

 (24)

 Senior Software Engineer

 (22)

 Business Analyst

 (14)

Summer Intern Interview Questions & Answers

user image Anonymous

posted on 11 Feb 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed before Feb 2022. There were 2 interview rounds.

Round 1 - Coding Test 

There were 2 coding questions and 10 MCQs.

Round 2 - Assignment 

There was a real life problem which we have to solve

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA and also learn some development be it Android development, Web Development or machine learning.

Summer Intern Interview Questions asked at other Companies

Q1. There are 8 bottles of milk out of which one bottle is poisoned. What will be the minimum number of persons required to find the poisoned bottle if the person dies within 24 hours of drinking the poison. You have only 24 hours.
View answer (6)

Get interview-ready with Top JPMorgan Chase & Co. Interview Questions

Summer Intern Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2022

I applied via Company Website and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What specific goals have you established for your career
  • Ans. 

    To become a successful marketing professional and eventually lead a marketing team.

    • To gain experience in various marketing roles and develop a strong skill set

    • To network and build connections within the industry

    • To continuously learn and stay updated with the latest marketing trends and strategies

    • To take on leadership roles and responsibilities

    • To achieve measurable results and contribute to the growth of the organizatio

  • Answered by AI
  • Q2. What differentiates jp morgan to other banks in the financial industry
  • Ans. 

    JP Morgan is known for its global presence, diverse range of services, and innovative technology.

    • JP Morgan has a strong global presence with operations in over 100 countries.

    • They offer a diverse range of financial services including investment banking, asset management, and commercial banking.

    • JP Morgan is known for its innovative technology, such as their blockchain platform Quorum.

    • They have a strong reputation for ris...

  • Answered by AI
  • Q3. Tell us about a time you had a project and had to sort out relevant information

Interview Preparation Tips

Interview preparation tips for other job seekers - you can reattempt the answer once

Summer Intern Interview Questions asked at other Companies

Q1. There are 8 bottles of milk out of which one bottle is poisoned. What will be the minimum number of persons required to find the poisoned bottle if the person dies within 24 hours of drinking the poison. You have only 24 hours.
View answer (6)

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Based on you past and current expression
Round 3 - HR 

(1 Question)

  • Q1. Compensation and flexibility

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence and presicised of what your goals

Analyst interview

user image InternMakers

posted on 18 Nov 2021

Transaction Specialist II Interview Questions & Answers

user image Anonymous

posted on 22 Feb 2022

I applied via Naukri.com and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. Why should we hire you?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.
  • Q4. Tell us as how would you cope up with the seniors members in your group
  • Ans. We can answer as , i would seek help and review tips from my seniors and match their standards
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - We should be confident on what we are answering. There should a Yes for the job assigned to us. Shouldn't be overconfident and should be polite towards the things we are unaware off. Always have an answer that has individual and company growth.

Intern Interview Questions & Answers

user image Anonymous

posted on 15 Jun 2021

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding questions with system design questions and puzzles were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume up to date. Do not add unnecessary stuff to your resume else they will easily catch you. Be as real as yo can. You should know some languages of your interest and should have relevant work experience in that.

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. interview for freshers?
JPMorgan Chase & Co. interview process for freshers usually has 2-3 rounds. The most common rounds in the JPMorgan Chase & Co. interview process for freshers are Technical, Coding Test and One-on-one Round.
How to prepare for JPMorgan Chase & Co. interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at JPMorgan Chase & Co.. The most common topics and skills that interviewers at JPMorgan Chase & Co. expect are Investment Banking, Data Analytics, Risk Management, Analytics and Financial Reporting.
What are the top questions asked in JPMorgan Chase & Co. interview for freshers?

Some of the top questions asked at the JPMorgan Chase & Co. interview for freshers -

  1. There are 8 bottles of milk out of which one bottle is poisoned. What will be t...read more
  2. If I buy a piece of equipment, walk me through the impact on the 3 financial st...read more
  3. With O(1) time complexity, find out if the given number is missing, from the gi...read more
How long is the JPMorgan Chase & Co. interview process?

The duration of JPMorgan Chase & Co. interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

JPMorgan Chase & Co. Interview Process for Freshers

based on 32 interviews in last 1 year

Interview experience

4.1
  
Good
View more

Explore Interview Questions and Answers for Top Skills at JPMorgan Chase & Co.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 560 Interviews
Bajaj Finserv Interview Questions
4.0
 • 499 Interviews
HSBC Group Interview Questions
4.0
 • 489 Interviews
Goldman Sachs Interview Questions
3.6
 • 407 Interviews
Deutsche Bank Interview Questions
3.9
 • 359 Interviews
American Express Interview Questions
4.2
 • 359 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
Morgan Stanley Interview Questions
3.7
 • 304 Interviews
Barclays Interview Questions
3.9
 • 270 Interviews
Bank of America Interview Questions
4.3
 • 234 Interviews
View all

JPMorgan Chase & Co. Reviews and Ratings

based on 5.8k reviews

4.0/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

3.9

Salary

4.1

Job security

3.9

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 5.8k Reviews and Ratings
Associate
10.1k salaries
unlock blur

₹10 L/yr - ₹42 L/yr

Team Lead
5.4k salaries
unlock blur

₹5.6 L/yr - ₹16.5 L/yr

Vice President
3.9k salaries
unlock blur

₹20 L/yr - ₹68.2 L/yr

Analyst
2.5k salaries
unlock blur

₹6.3 L/yr - ₹25 L/yr

Software Engineer
2.4k salaries
unlock blur

₹11 L/yr - ₹35 L/yr

Explore more salaries
Compare JPMorgan Chase & Co. with

Morgan Stanley

3.7
Compare

Goldman Sachs

3.6
Compare

TCS

3.7
Compare

Bank of America

4.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview