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

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

JPMorgan Chase & Co. Software Engineer2 Interview Questions and Answers

Updated 13 Jan 2025

9 Interview questions

A Software Engineer2 was asked 5mo ago
Q. Write a program to check if the sum of the digits of a given number is a prime number.
Ans. 

Program to check if sum of digits of a number is prime

  • Convert the number to a string to iterate through each digit

  • Calculate the sum of digits

  • Check if the sum is a prime number

A Software Engineer2 was asked 5mo ago
Q. What has been your experience with framework design and implementation?
Ans. 

I have extensive experience in designing and implementing frameworks for various software projects.

  • Designed and implemented a custom testing framework for automated testing of web applications.

  • Utilized Spring framework for developing enterprise applications, including dependency injection and aspect-oriented programming.

  • Contributed to the design and implementation of a microservices architecture using Netflix OSS ...

Software Engineer2 Interview Questions Asked at Other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a po ... read more
asked in Wayfair
Q2. Describe how you would design an Order and Cart Page in iOS, incl ... read more
asked in JioStar
Q3. Given an array of officers, where ranks 1-8 represent high-rankin ... read more
Q4. How to process large amount of data? Which tool would you prefer?
asked in PayPal
Q5. Can you describe the system design for the checkout feature on Am ... read more
A Software Engineer2 was asked 5mo ago
Q. What is the difference between an abstract class and an interface? Give a use case for both.
Ans. 

Abstract class allows partial implementation while interface allows full abstraction.

  • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

  • A class can only extend one abstract class, but can implement multiple interfaces.

  • Abstract class is used when some common functionality needs to be shared among subclasses, while interface is used to define a contract for...

A Software Engineer2 was asked 5mo ago
Q. Write a program to find the frequency of each word in a sentence.
Ans. 

Program to find frequency of words in a sentence

  • Split the sentence into words using space as delimiter

  • Create a map to store word frequencies

  • Iterate through the words and update the map accordingly

  • Handle case sensitivity and punctuation if needed

What people are saying about JPMorgan Chase & Co.

View All
drishya58
Verified Icon
1w (edited)
works at
Accenture
Which offer should I go with ?
Hello, I have offers from Skillsoft, William Sonoma and JP Morgan Chase with similar amount but with 1 lakh difference. JPMC is 5 days work from office and other 2 companies are 2 days work from office in hyderabad location. Which company should I go with?
Got a question about JPMorgan Chase & Co.?
Ask anonymously on communities.
A Software Engineer2 was asked 5mo ago
Q. Explain the concept of static and provide a use case.
Ans. 

Static keyword is used in programming to declare variables or methods that belong to the class itself, rather than instances of the class.

  • Static variables are shared among all instances of a class.

  • Static methods can be called without creating an instance of the class.

  • Static keyword is used to define constants in a class.

  • Static keyword is used in Java, C++, and other programming languages.

A Software Engineer2 was asked 5mo ago
Q. Where are objects stored in memory?
Ans. 

Objects are stored in memory in the heap or stack depending on their scope and lifetime.

  • Objects with local scope are stored on the stack, while objects with dynamic memory allocation are stored on the heap.

  • Primitive data types like int, float are stored on the stack, while complex objects like arrays, classes are stored on the heap.

  • Objects stored on the stack have faster access but limited size, while objects on t...

A Software Engineer2 was asked 5mo ago
Q. Write an SQL query to get the second highest salary in the table
Ans. 

SQL query to get the second highest salary in a table

  • Use the MAX() function to find the highest salary

  • Use the WHERE clause to exclude the highest salary

  • Order the salaries in descending order and limit the result to 1

Are these interview questions helpful?
A Software Engineer2 was asked
Q. What is the difference between var, let, and const?
Ans. 

var, let, and const are all used for variable declaration in JavaScript, but they have different scopes and mutability.

  • var is function-scoped and can be redeclared and reassigned

  • let is block-scoped and can be reassigned but not redeclared

  • const is block-scoped and cannot be reassigned or redeclared

A Software Engineer2 was asked 5mo ago
Q. What is TDD and BDD? What are the differences and which one do you prefer?
Ans. 

TDD stands for Test-Driven Development and BDD stands for Behavior-Driven Development. TDD focuses on writing tests before writing code, while BDD focuses on the behavior of the system.

  • TDD involves writing a failing test, writing code to make the test pass, and then refactoring the code.

  • BDD focuses on defining the behavior of the system through examples written in a specific format like Given-When-Then.

  • TDD is more...

JPMorgan Chase & Co. Software Engineer2 Interview Experiences

4 interviews found

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

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I'm a passionate software engineer with a focus on developing scalable applications and a strong background in problem-solving.

    • Experience in full-stack development using technologies like React and Node.js.

    • Worked on a project that improved application performance by 30% through optimization techniques.

    • Strong understanding of algorithms and data structures, demonstrated in competitive programming.

    • Collaborated with cross...

  • Answered by AI
  • Q2. What has been your experience with framework design and implementation?
  • Ans. 

    I have extensive experience in designing and implementing frameworks for various software projects.

    • Designed and implemented a custom testing framework for automated testing of web applications.

    • Utilized Spring framework for developing enterprise applications, including dependency injection and aspect-oriented programming.

    • Contributed to the design and implementation of a microservices architecture using Netflix OSS frame...

  • Answered by AI
  • Q3. What is the tech and languages you are comfortable with? Rate yourself on each.
  • Ans. 

    I am comfortable with Java, Python, and SQL. I rate myself 8/10 in Java, 7/10 in Python, and 9/10 in SQL.

    • Java - 8/10

    • Python - 7/10

    • SQL - 9/10

  • Answered by AI
  • Q4. What is your experience with finance?
  • Ans. 

    I have experience working on financial software applications and projects.

    • Developed financial software applications for tracking expenses and budgeting

    • Worked on projects involving payment processing and transaction management

    • Familiar with financial data analysis and reporting tools

    • Collaborated with finance teams to understand requirements and implement solutions

  • Answered by AI
  • Q5. What is TDD and BDD? What are the differences and which one do you prefer?
  • Ans. 

    TDD stands for Test-Driven Development and BDD stands for Behavior-Driven Development. TDD focuses on writing tests before writing code, while BDD focuses on the behavior of the system.

    • TDD involves writing a failing test, writing code to make the test pass, and then refactoring the code.

    • BDD focuses on defining the behavior of the system through examples written in a specific format like Given-When-Then.

    • TDD is more deve...

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. Write a program to find the frequency of word in a sentence
  • Ans. 

    Program to find frequency of words in a sentence

    • Split the sentence into words using space as delimiter

    • Create a map to store word frequencies

    • Iterate through the words and update the map accordingly

    • Handle case sensitivity and punctuation if needed

  • Answered by AI
  • Q2. Write a program to check if the sum of digits of.the given number is a prime number
  • Ans. 

    Program to check if sum of digits of a number is prime

    • Convert the number to a string to iterate through each digit

    • Calculate the sum of digits

    • Check if the sum is a prime number

  • Answered by AI
  • Q3. Write an SQL query to get the second highest salary in the table
  • Ans. 

    SQL query to get the second highest salary in a table

    • Use the MAX() function to find the highest salary

    • Use the WHERE clause to exclude the highest salary

    • Order the salaries in descending order and limit the result to 1

  • Answered by AI
  • Q4. What is the difference between abstract class and interface? Give a use case for both.
  • Ans. 

    Abstract class allows partial implementation while interface allows full abstraction.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract class is used when some common functionality needs to be shared among subclasses, while interface is used to define a contract for clas...

  • Answered by AI
  • Q5. Explain static and give it's use case.
  • Ans. 

    Static keyword is used in programming to declare variables or methods that belong to the class itself, rather than instances of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static keyword is used to define constants in a class.

    • Static keyword is used in Java, C++, and other programming languages.

  • Answered by AI
  • Q6. Where are objects stored in memory?
  • Ans. 

    Objects are stored in memory in the heap or stack depending on their scope and lifetime.

    • Objects with local scope are stored on the stack, while objects with dynamic memory allocation are stored on the heap.

    • Primitive data types like int, float are stored on the stack, while complex objects like arrays, classes are stored on the heap.

    • Objects stored on the stack have faster access but limited size, while objects on the he...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thoroughly practice and study language of your choice
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Dsa questions- medium level
  • Q2. Dsa questions - medium level
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 5 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about my work experience and questions based on the resume points
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked java programs, SQL questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. With Manager, asked few technical questions based on resume points
Round 4 - Behavioral 

(1 Question)

  • Q1. It was casual discussion
Round 5 - HR 

(1 Question)

  • Q1. It was mainly salary discussion and joining date related
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between var let and const?
  • Ans. 

    var, let, and const are all used for variable declaration in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on core concepts of the technologies and easy to medium problem solving questions. I interviewed for frontend developer so most of my questions were around Reactjs and Javascript. I was asked about arrays and variable scoping etc. Core Javascripts and ReactJS concepts are a must.

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the day time. I was asked the programming language of my choice. It was mostly focused on programming fundamentals. I was asked 2 questions based on Data Structures and Algorithms.

  • Q1. How can you detect a loop in a linked list?
  • Ans. 

    A loop in a linked list can be detected using Floyd's Cycle Detection Algorithm.

    • Use two pointers - slow and fast, where slow moves one step at a time and fast moves two steps at a time.

    • If there is a loop, the two pointers will eventually meet at some point within the loop.

    • To detect the start of the loop, reset one pointer to the head and move both pointers one step at a time until they meet again.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This round was mostly focused on my resume and projects.

  • Q1. Tell me about your projects.
Round 3 - Face to Face 

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. I went to their office in Gurgaon. It was taken by one of the technology director who had a lot of experience. 
 

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in GurgaonAmerican Express interview preparation:Topics to prepare for the interview - Data structures and algorithms, Object-Oriented Programming System concepts, Database Management System, Operating System, Networking.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Do practice a lot of data structures questions as mostly questions in interviews are based on them. Also, do prepare for projects mentioned in your resume and skills which you have mentioned. Coding ninjas has a big hand in making my interview clear as I have taken a course from the coding Ninjas which helped me a lot to make my concepts clear.

Application resume tips for other job seekers

Keep it short and crisp. Go through it properly before the interview. Make sure that you haven't put anything in it that can cause you problems during the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Nov 2021. There were 3 interview rounds.

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 - Aptitude Test 

Moderate level aptitude with basics

Round 3 - Coding Test 

Moderate level data structure questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and what what u speak because that is most important

I applied via Company Website and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hypothetical Questions - What if the company decides to demote all senior associate s to associate? What will be your reaction??

Interview Preparation Tips

Interview preparation tips for other job seekers - I went for Enterprise Testing Senior Associate. The person who interviewed me was very well known to me. He worked with me for more than a year at the same level. Asked illogical questions. All hypothetical questions he asked in which I was the one who was getting demoted or denied bonus or increment.
He should not have taken my interview as it was conflict of Interest. 99% of questions was asked by this guy and the other lady in VC only asked 1 general question.
I reported conflict of interest issue to the hiring HR but no action was taken not any reply toy email came.
Are these interview questions helpful?

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Project Overview BA/PO related questions Domain and Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Freshen up the domain learnings
Be confident of the behaviour questions as per the past and practical experience

I appeared for an interview in Jan 2017.

Interview Questionnaire 

3 Questions

  • Q1. 1. Why do you want to join Citi?
  • Ans. 

    I want to join Citi because of its global presence, strong reputation, and opportunities for growth.

    • Citi is a global company with a presence in over 100 countries, which provides an opportunity to work with diverse teams and gain international exposure.

    • Citi has a strong reputation in the financial industry, known for its expertise and innovative solutions.

    • Citi offers excellent career development opportunities, includin...

  • Answered by AI
  • Q2. 2. Why do you want a career in banking? And not consulting or finance?
  • Ans. 

    I am interested in a career in banking because of the opportunities for growth, the dynamic nature of the industry, and my passion for financial analysis.

    • Opportunities for growth: Banking offers a wide range of career paths and opportunities for advancement. I am excited about the potential to develop my skills and progress within the industry.

    • Dynamic nature of the industry: Banking is constantly evolving, with new tec...

  • Answered by AI
  • Q3. 3. How has the Indian Economy performed in the past 2 years?
  • Ans. 

    The Indian economy has experienced mixed performance in the past 2 years.

    • GDP growth rate has fluctuated

    • Demonetization and GST implementation impacted the economy

    • Unemployment rate has been a concern

    • Inflation has remained relatively low

    • Foreign direct investment has increased

    • Agricultural sector faced challenges due to weather conditions

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: My resume had gotten shortlisted for the profile of an Analyst. This was the first stage.

Round: Group Discussion
Duration: 20 minutes

College Name: Lady Shri Ram College

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

JPMorgan Chase & Co. Interview FAQs

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

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

  1. What is the difference between abstract class and interface? Give a use case fo...read more
  2. What is TDD and BDD? What are the differences and which one do you pref...read more
  3. What has been your experience with framework design and implementati...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.2/5

based on 6 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 615 Interviews
Bajaj Finserv Interview Questions
4.0
 • 598 Interviews
Citicorp Interview Questions
3.7
 • 587 Interviews
HSBC Group Interview Questions
3.9
 • 510 Interviews
American Express Interview Questions
4.1
 • 386 Interviews
BNY Interview Questions
3.8
 • 366 Interviews
UBS Interview Questions
3.9
 • 351 Interviews
Morgan Stanley Interview Questions
3.6
 • 307 Interviews
Morningstar Interview Questions
3.9
 • 251 Interviews
View all
JPMorgan Chase & Co. Software Engineer2 Salary
based on 791 salaries
₹14 L/yr - ₹34 L/yr
25% more than the average Software Engineer2 Salary in India
View more details

JPMorgan Chase & Co. Software Engineer2 Reviews and Ratings

based on 46 reviews

3.8/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.7

Salary

4.1

Job security

3.8

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 46 Reviews and Ratings
Associate
11.2k salaries
unlock blur

₹18.6 L/yr - ₹33 L/yr

Team Lead
5.8k salaries
unlock blur

₹4.5 L/yr - ₹17 L/yr

Vice President
4.3k salaries
unlock blur

₹38.8 L/yr - ₹70 L/yr

Senior Associate
2.8k salaries
unlock blur

₹24.3 L/yr - ₹45 L/yr

Analyst
2.8k salaries
unlock blur

₹11.4 L/yr - ₹20 L/yr

Explore more salaries
Compare JPMorgan Chase & Co. with

Morgan Stanley

3.6
Compare

Goldman Sachs

3.5
Compare

TCS

3.6
Compare

Bank of America

4.2
Compare
write
Share an Interview