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

Filter interviews by

JPMorgan Chase & Co. Senior Software Engineer Interview Questions, Process, and Tips

Updated 25 Feb 2025

Top JPMorgan Chase & Co. Senior Software Engineer Interview Questions and Answers

  • Q1. Excel Column Number Conversion Given a column title as it appears in an Excel sheet, your task is to return its corresponding column number. Example: Input: S = "AB" Out ...read more
  • Q2. LRU Cache Design Question Design a data structure for a Least Recently Used (LRU) cache that supports the following operations: 1. get(key) - Return the value of the key ...read more
  • Q3. What is a lambda expression in Java, and how does it relate to a functional interface?
View all 26 questions

JPMorgan Chase & Co. Senior Software Engineer Interview Experiences

22 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Internal working of hashMap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a collision occurs and the key-value pairs are stored in a linked list at that index.

    • To retri...

  • Answered by AI
  • Q2. Multithreading [Threads vs Processes]
  • Ans. 

    Threads are lightweight processes within a single process, sharing memory space. Processes are independent instances of a program.

    • Threads share memory space, making communication between threads faster and more efficient.

    • Processes have their own memory space, making them more isolated and secure.

    • Threads are faster to create and terminate compared to processes.

    • Processes are more stable and reliable, as a crash in one pr...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Basic DSA questions were asked with hashmaps and collections

Round 2 - Technical 

(1 Question)

  • Q1. Rotate a 2-D matrix
  • Ans. 

    Rotate a 2-D matrix

    • Iterate through each layer of the matrix

    • For each layer, swap the elements in a cyclic manner

    • Repeat the process for all layers until the entire matrix is rotated

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Related to Java and tech skills which mentioned in resume.
Round 3 - Technical 

(1 Question)

  • Q1. System design and ds related

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Senior Software Engineer interview:
  • Core Java
Interview preparation tips for other job seekers - Learn basics with an real time example for each tech skills

What people are saying about JPMorgan Chase & Co.

View All
an analyst
1w
Anyone who has recently joined Nomura? How long do they take to decide a candidate ,negotiate salary & roll out offer after final interview?
Got a question about JPMorgan Chase & Co.?
Ask anonymously on communities.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Basic python and data structure, time complexity of programs

Round 3 - Technical 

(1 Question)

  • Q1. Oops concepts in depth
  • Ans. 

    Object-oriented programming principles for organizing and designing code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: Ability for objects to take on multiple forms or types.

    • Abstraction: Hiding complex implementation details and showing only necessary features.

  • Answered by AI

JPMorgan Chase & Co. interview questions for designations

 Senior Software Engineer 2

 (2)

 Senior Software Test Engineer

 (1)

 Software Engineer

 (32)

 Senior Software Developer

 (1)

 Associate Software Engineer

 (9)

 Software Engineer Intern

 (7)

 Software Engineer III

 (4)

 Lead Software Engineer

 (2)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Internal working of string intern
  • Ans. 

    String intern is a method in Java that returns a canonical representation of a string object.

    • String intern() method returns a canonical representation for the string object.

    • If a string with the same contents is already in the string pool, then it returns the reference to that string.

    • If not present, it adds the string to the pool and returns the reference.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Microservice architecture
Round 3 - Coding Test 

Hackerrank - Coding test

Skills evaluated in this interview

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

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Assignment 

Assignment for angular

Round 2 - Coding Test 

Test discussion with work flow and concept understanding

Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

I was interviewed in Jun 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Accumulators in spark python sum of odd places in list Partition and bucketing
  • Ans. 

    Spark accumulators are used to accumulate values across multiple tasks in a distributed manner.

    • Accumulators are used to accumulate values across multiple tasks in a distributed manner

    • They are used to implement counters and sums in Spark

    • Accumulators are read-only variables that can only be updated by an associative and commutative operation

    • Partitioning is the process of dividing a large dataset into smaller, more manage...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. SQL median query in spark Python user defined exceptions Dataframe - RDD & RDD - Dataframe conversion
Round 3 - HR 

(1 Question)

  • Q1. Reason for change Things to look forward in your next company

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Senior Software Engineer interview:
  • Spark
  • Python
  • SQL
  • Hive
Interview preparation tips for other job seekers - Be good with basics and theory of all the concepts

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Coding skills dynamic programming

Round 2 - Technical 

(1 Question)

  • Q1. Coding skills dynamic programming
Round 3 - Technical 

(1 Question)

  • Q1. Microservices spring boot
Round 4 - Aptitude Test 

Technical coding skills

I applied via Approached by Company and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Hashcode and equals contract
  • Q2. Springboot annotations
Round 2 - Behavioral 

(2 Questions)

  • Q1. Current project details
  • Q2. Explain Solid principles
  • Ans. 

    SOLID principles are a set of five design principles that help in creating maintainable and scalable software applications.

    • S - Single Responsibility Principle (SRP)

    • O - Open-Closed Principle (OCP)

    • L - Liskov Substitution Principle (LSP)

    • I - Interface Segregation Principle (ISP)

    • D - Dependency Inversion Principle (DIP)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Core Java, springboot annotations, Spring AOP basics, ORM

I was interviewed in Oct 2021.

Round 1 - Video Call 

(6 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 very simple coding problem followed by some questions from Java and Spring.

  • Q1. 

    Excel Column Number Conversion

    Given a column title as it appears in an Excel sheet, your task is to return its corresponding column number.

    Example:

    Input:
    S = "AB"
    Output:
    28
    Explanation:

    The seq...

  • Q2. What is a lambda expression in Java, and how does it relate to a functional interface?
  • Q3. What are Java 8 streams?
  • Q4. What do you understand by autowiring in Spring Boot, and can you name the different modes of it?
  • Q5. What does the @SpringBootApplication annotation do internally?
  • Q6. What are the basic annotations that Spring Boot offers?
Round 2 - Video Call 

(6 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round focused more on Multithreading concepts from Java and also some core concepts from OOPS.

  • Q1. What is a thread in Java?
  • Q2. What are the start() and run() methods of the Thread class in Java?
  • Q3. What is the difference between the Thread class and the Runnable interface when creating a thread in Java?
  • Q4. What is the difference between an abstract class and an interface in OOP?
  • Q5. What is the garbage collector in Java?
  • Q6. Can you explain the SOLID principles in Object-Oriented Design?
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a System Design Round where I was asked a LLD question to design a URL Shortener followed by a very standard question of LRU Cache. Overall this round went well and the interviewer was also quite satisfied by my answers.

  • Q1. Design a URL shortener.
  • Q2. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

Interview Preparation Tips

Eligibility criteriaAbove 3 years of experienceJP Morgan interview preparation:Topics to prepare for the interview - Data Structures, Algorithms , Java , OOPS , Spring , System DesignTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. Senior Software Engineer interview?
JPMorgan Chase & Co. interview process usually has 2-3 rounds. The most common rounds in the JPMorgan Chase & Co. interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for JPMorgan Chase & Co. Senior Software Engineer interview?
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 Java, Microservices, Finance, J2Ee and Javascript.
What are the top questions asked in JPMorgan Chase & Co. Senior Software Engineer interview?

Some of the top questions asked at the JPMorgan Chase & Co. Senior Software Engineer interview -

  1. Accumulators in spark python sum of odd places in list Partition and bucket...read more
  2. What are virtual functions? What is vTable, vPtr? Different types of smart poin...read more
  3. Internal working of string int...read more
How long is the JPMorgan Chase & Co. Senior Software Engineer interview process?

The duration of JPMorgan Chase & Co. Senior Software Engineer interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

JPMorgan Chase & Co. Senior Software Engineer Interview Process

based on 18 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
View more
JPMorgan Chase & Co. Senior Software Engineer Salary
based on 1k salaries
₹13 L/yr - ₹48 L/yr
98% more than the average Senior Software Engineer Salary in India
View more details

JPMorgan Chase & Co. Senior Software Engineer Reviews and Ratings

based on 62 reviews

3.8/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.7

Salary

3.8

Job security

3.5

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 62 Reviews and Ratings
Associate
10.2k salaries
unlock blur

₹10.3 L/yr - ₹35.8 L/yr

Team Lead
5.6k salaries
unlock blur

₹5.6 L/yr - ₹16 L/yr

Vice President
4k salaries
unlock blur

₹26.5 L/yr - ₹69.7 L/yr

Analyst
2.6k salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Software Engineer
2.5k 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.5
Compare

TCS

3.7
Compare

Bank of America

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