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.9k Reviews

Filter interviews by

JPMorgan Chase & Co. SDE-2 Interview Questions, Process, and Tips

Updated 16 Aug 2024

Top JPMorgan Chase & Co. SDE-2 Interview Questions and Answers

  • Q1. Longest Increasing Path in Matrix Problem Statement Given a 2-D matrix mat with 'N' rows and 'M' columns, where each element at position (i, j) is mat[i][j] , determine ...read more
  • Q2. Arithmetic Progression Queries Problem Statement Given an integer array ARR of size N , perform the following operations: - update(l, r, val): Add (val + i) to arr[l + i ...read more
  • Q3. Pattern Matching Problem Statement Given a pattern as a string and a set of words, determine if the pattern and the words list align in the same sequence. Input: T (numb ...read more
View all 6 questions

JPMorgan Chase & Co. SDE-2 Interview Experiences

2 interviews found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 16 Aug 2024

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

I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

DSA, Leetcode medium -2 problems

Round 2 - One-on-one 

(2 Questions)

  • Q1. Easy Leetcode Problem: Count of substrings with no repeating characters
  • Ans. 

    Count substrings with unique characters in a given string

    • Use a sliding window approach to keep track of unique characters in a substring

    • Use a set to store characters in the current window and update the window accordingly

    • Increment the count of valid substrings whenever a new character is added to the set

  • Answered by AI
  • Q2. Debugging a Java Code
  • Ans. 

    Debugging a Java code involves identifying and fixing errors in the code to ensure it runs correctly.

    • Start by understanding the error message or symptoms of the issue.

    • Use debugging tools like breakpoints, watches, and logging to track the flow of the code.

    • Review the code logic and check for common mistakes like typos, incorrect variable assignments, or logic errors.

    • Test different scenarios to reproduce the issue and na...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Design Parking System
  • Ans. 

    Design a parking system with different types of parking spots

    • Create classes for different types of parking spots (e.g. compact, regular, handicap)

    • Implement methods for checking availability, reserving, and releasing spots

    • Consider implementing a parking lot class to manage all parking spots

  • Answered by AI

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 14 Sep 2021

I was interviewed in Mar 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 80 minutes
Round difficulty - Medium

  • Q1. 

    Longest Increasing Path in Matrix Problem Statement

    Given a 2-D matrix mat with 'N' rows and 'M' columns, where each element at position (i, j) is mat[i][j], determine the length of the longest increasing...

  • Ans. Recursion

    Algorithm

     

    • This is a recursive approach.
    • Make a recursive function ‘helper(row, col)’ and call this function with (0, 0). In each recursive step do the following-:
      • Initialize an integer variable ‘temp’: = 0.
      • If cell (row+1, c) exist and mat[row+1][col] > mat[row][col], then recursively call ‘helper(row+1, col)’ and update ‘temp’ with maximum of ‘temp’ and value return by ‘helper(row+1, col)’.
      • If cell (row, ...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Hard

It was purely Data Structures and Maths.

  • Q1. 

    Arithmetic Progression Queries Problem Statement

    Given an integer array ARR of size N, perform the following operations:

    - update(l, r, val): Add (val + i) to arr[l + i] for all 0 ≤ i ≤ r - l.

    - rangeSu...

  • Ans. Brute Force

    In this approach, for each operation, we will be simply doing what we need to do to perform that task. For update operation, we will iterate over the array and update the given value in increasing order as mentioned in the problem description update operation. Similarly, for rangesum operation, we will iterate over the array for the given range and add all elements. For example, consider the input array as [...

  • Answered Anonymously
Round 3 - Video Call 

Round duration - 70 Minutes
Round difficulty - Easy

Round 4 - Coding Test 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

  • Q1. 

    Pattern Matching Problem Statement

    Given a pattern as a string and a set of words, determine if the pattern and the words list align in the same sequence.

    Input:
    T (number of test cases)
    For each test ca...
  • Ans. Using Hashing

    The approach is to use hashing. We can maintain two HashMaps. One HashMap can be used to know which character corresponds to which word. The other HashMap can be used to know whether a particular word has already been matched with any other character or not. 

     

    So, for each character in the pattern, we check for its corresponding word in the first map. If the character is not present in the first m...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maharaja Surajmal Institute Of Technology. I applied for the job as SDE - 2 in MumbaiEligibility criteriaNoJPMorgan Chase & Co. interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Probability, System Design, Project (thoroughly).Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : I solved Interviewbit mostly
Tip 2 : Revised my Coding Ninjas Course 
Tip 3 : Created One Project (Helped me a lot during Design Interview )

Application resume tips for other job seekers

Tip 1 : I have done some internship as a Software Developer.
Tip 2 : Have some good project on my resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions Asked at Other Companies

asked in Walmart
Q1. Maximum Frequency Number Problem Statement Given an array of inte ... read more
asked in Atlassian
Q2. K Most Frequent Words Problem Statement Given an array of N non-e ... read more
Q3. Reverse String Operations Problem Statement You are provided with ... read more
asked in ShareChat
Q4. Square Root of an Integer Challenge Given an integer 'A', the obj ... read more
asked in DP World
Q5. Count Ways To Reach The N-th Stair Problem Statement You are give ... read more

Interview questions from similar companies

I was interviewed in May 2022.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Round started with an intro about the project. In my project i have mentioned that i had use Cassandra. The interviewer asked why use Cassandra , why not other No Sql database.
After that the interviewer started asking about the java concepts. How exception propagate takes in case of polymorphism.
There a question about multilevel inheritance. There were three classes parent, child , grandchild in a multlevel inheritance.
All three classes have a function with same name.
Question was about if we call a method something like this 
Parent p = new Grandchild();
p.method1();
which class method would be called

  • Q1. 

    First Missing Positive Problem Statement

    You are provided with an integer array ARR of length 'N'. Your objective is to determine the first missing positive integer using linear time and constant space. T...

  • Ans. Searching
    1. Since we are given an integer ‘N’, there could be a maximum of ‘N’ positive integers in the array.
    2. The minimum positive number is 1, hence we can search from 1 to N in the array.
    3. Run a loop from 1 to N, and search for each element in the array.
    4. If the element is present in the array then search for the next element.
    5. If it is not present then, the element is the answer.
    6. Otherwise, if all the elements between 1 to N ...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Interviewer started with some questions about Database locks .
I had to prepare a low level design of the library management system.
Then there were follow up questions regarding how many database table you will use, normalizing those databse table, writing the service logic for one of the functionality

  • Q1. Design a Library Management System.
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was managerial round. They asked few questions about the project and why you use this particular technology.

  • Q1. Can you explain your project and the reasons for using this particular technology?
  • Ans. 

    Tip 1 : Make sure to study why you have use this particular tech
     

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo criteriaMorgan Stanley interview preparation:Topics to prepare for the interview - Data Structures,Java 8 new features,Low Level Design,Database indexes and locksKnowledge of ProjectTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Be very clear with java basics, polymorphism in multilevel inheritance. Future, callable, completable furture in concurrency, stream api.Concurrent hash map, Database locks , how Database indexes are fast.
Tip 2 : In 2 round they are going to make you do a low level design for an application. In my case it was library management system, Be ready for the follow up questions like how many tables are you going to use this low level design, normalizing the tables you have used. Write logic for one of the service in the low level design.
Tip 3 : For the managerial round, you should know why you used this partcular tech stack.

Application resume tips for other job seekers

Tip 1 : Only mention those things in projects which you have really done in your organization. Morgan stanley is particular rigorous about the projects. 
Tip 2 : Be sure to highlight what business values your project brought to the organization

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2022.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It was a L1 technical round where questions from DS algo were asked, along with my work exp and projects. It was a face to face video round with 2 panel members

  • Q1. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    import java.io.*;
    import java.util.*;
    public class Main
    {
    public static void DFS(int[][] input, int i, int j, int row, int col){
    if(i<0||j<0||i>row-1||j>col-1){
    return;
    }
    if(input[i][j]==1){
    input[i][j]=0;
    DFS(input,i+1,j,row,col);
    DFS(input,i-1,j,row,col);
    DFS(input,i,j+1,row,col);
    DFS(input,i,j-1,row,col);
    }
    }

    public static int countNumber(int[][] input, int row, int col){
    int count =0;
    for(int i=0;i {
    for(int j=0;j if(inpu...

  • Answered Anonymously
  • Q2. How can you prevent the breaking of the singleton pattern using reflections?
  • Ans. 

    Tip 1 : Provide correct answer i you know
    Tip 2 : Revise Java concepts

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was a System design round and the interviewer was very friendly, he gave ample hints and it was a productive interaction.

  • Q1. Design an LRU (Least Recently Used) cache.
  • Ans. 

    Tip 1 : Practise System Design well
    Tip 2 : Ask questions wherein necessary

  • Answered Anonymously
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

It was a standard manager where I was asked many questions related to my work exp and behavioural questions

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from IIIT,BBSR. I applied for the job as SDE - 2 in GurgaonEligibility criteriaNoAmerican Express interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, Java, DatabaseTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on Core Java and development 
Tip 2 : Practise easy -medium questions

Application resume tips for other job seekers

Tip 1 : Projects should be well defined use bullet points
Tip 2 : Describe your work ex/ intern exp well

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOPS Concepts,Java Coding,Testing
Round 2 - Technical 

(1 Question)

  • Q1. Selenium, APIs, Automation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is salary expectating?
  • Ans. 

    I am looking for a competitive salary based on my experience and skills.

    • Research industry standards for SDET Engineer salaries

    • Consider my level of experience and skills

    • Factor in location and cost of living

    • Negotiate based on benefits and perks offered by the company

  • Answered by AI
  • Q2. What is your experience
  • Ans. 

    I have 5 years of experience in software development and testing, with a focus on automation and quality assurance.

    • 5 years of experience in software development and testing

    • Specialize in automation and quality assurance

    • Proficient in programming languages such as Java and Python

    • Experience with testing frameworks like Selenium and JUnit

    • Worked on various projects to improve testing processes and efficiency

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

70mins on java code,and MCQ

Round 2 - Coding Test 

On Java programming 40 minutes

Round 3 - One-on-one 

(1 Question)

  • Q1. Did not clear 2nd round
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quant and verbal ability

Round 2 - Coding Test 

Questions from DSA and webdevelopement

Round 3 - HR 

(1 Question)

  • Q1. About my goals with the company and how will I contribute to it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and try to answer question in your own words rather than looking online for them

I applied via campus placement at SRM university (SRMU) and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Assignment 

Online api round . We had to send an api request to server

Round 2 - Coding Test 

One coding questions in the language of ur given preference . It was a basic dsa question

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy just clear ur basics, good communication skills and tech knowledge is required. Some good projects are cherry on top

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding question, 1 section of business aptitude and 1 section english.

Round 2 - Technical 

(2 Questions)

  • Q1. Design a chess game.
  • Ans. 

    A classic chess game with standard rules and pieces.

    • Create a board with 8x8 squares

    • Place 16 pieces on each side: 1 king, 1 queen, 2 rooks, 2 knights, 2 bishops, and 8 pawns

    • Define the movement rules for each piece

    • Implement special moves like castling and en passant

    • Check for checkmate and stalemate conditions

    • Allow for player vs player or player vs computer gameplay

  • Answered by AI
  • Q2. N queens problem. Minimum steps by knight.
  • Ans. 

    The N Queens problem is to place N chess queens on an NxN board so that no two queens threaten each other. Minimum steps by knight is a variation of this problem.

    • The N Queens problem is a classic problem in computer science and can be solved using backtracking.

    • The minimum steps by knight variation involves placing N knights on an NxN board so that no two knights threaten each other.

    • This problem can also be solved using...

  • Answered by AI
Round 3 - Telephonic Call 

(1 Question)

  • Q1. Hr questions were asked. And location preference.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Tell truth. Know your resume well.

Skills evaluated in this interview

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. SDE-2 interview?
JPMorgan Chase & Co. interview process usually has 3 rounds. The most common rounds in the JPMorgan Chase & Co. interview process are One-on-one Round and Coding Test.
What are the top questions asked in JPMorgan Chase & Co. SDE-2 interview?

Some of the top questions asked at the JPMorgan Chase & Co. SDE-2 interview -

  1. Easy Leetcode Problem: Count of substrings with no repeating charact...read more
  2. Debugging a Java C...read more
  3. Design Parking Sys...read more

Tell us how to improve this page.

JPMorgan Chase & Co. SDE-2 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 561 Interviews
Wells Fargo Interview Questions
3.9
 • 560 Interviews
Bajaj Finserv Interview Questions
4.0
 • 500 Interviews
HSBC Group Interview Questions
4.0
 • 489 Interviews
Goldman Sachs Interview Questions
3.6
 • 407 Interviews
Deutsche Bank Interview Questions
3.9
 • 361 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
BNY Interview Questions
3.9
 • 333 Interviews
Morgan Stanley Interview Questions
3.7
 • 304 Interviews
View all
JPMorgan Chase & Co. SDE-2 Salary
based on 5 salaries
₹16 L/yr - ₹24 L/yr
36% less than the average SDE-2 Salary in India
View more details
Associate
10.1k salaries
unlock blur

₹10 L/yr - ₹42 L/yr

Team Lead
5.5k salaries
unlock blur

₹5.5 L/yr - ₹16.3 L/yr

Vice President
3.9k salaries
unlock blur

₹26.2 L/yr - ₹85 L/yr

Analyst
2.6k salaries
unlock blur

₹6.3 L/yr - ₹25 L/yr

Software Engineer
2.5k salaries
unlock blur

₹10.8 L/yr - ₹34 L/yr

Explore more salaries
Compare JPMorgan Chase & Co. with

Morgan Stanley

3.7
Compare

Goldman Sachs

3.5
Compare

TCS

3.7
Compare

Bank of America

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