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. Software Developer II Interview Questions and Answers

Updated 15 Oct 2024

JPMorgan Chase & Co. Software Developer II Interview Experiences

2 interviews found

Software Developer II Interview Questions & Answers

user image Macha Jagadeesh

posted on 15 Oct 2024

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

(2 Questions)

  • Q1. Git PR review scenario based questions
  • Q2. Substrings with unique characters count
  • Ans. 

    Count substrings with unique characters in an array of strings.

    • Iterate through each string in the array

    • For each string, iterate through all possible substrings and check for unique characters

    • Keep count of substrings with unique characters

  • Answered by AI

Skills evaluated in this interview

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 Sep 2023. There was 1 interview round.

Round 1 - hackathon 

(1 Question)

  • Q1. Design a trading system that works end-to-end with algos to process buy and sell orders quickly. (few open source APIs provided by hackathon organizers)
  • Ans. 

    Design a trading system with algos for quick buy and sell orders processing.

    • Utilize open source APIs for market data and order execution.

    • Implement algorithms for analyzing market trends and making trading decisions.

    • Include risk management features to prevent large losses.

    • Optimize system for low latency to ensure quick order processing.

    • Implement backtesting functionality to evaluate algorithm performance.

  • Answered by AI

Skills evaluated in this interview

Software Developer II Interview Questions Asked at Other Companies

asked in IQVIA
Q1. What all type of exceptions in Mule 4 & 3 and what is differe ... read more
asked in IQVIA
Q2. What is scaling in Mule , if know then why and when we do differe ... read more
asked in IQVIA
Q3. Dataweave functions ? How to write custom function?
Q4. how two arrays represented as trees are identical trees
asked in IQVIA
Q5. How to deploy mule apis? On Prim ? Cloudhub?

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium leetcode question on array list

Round 2 - One-on-one 

(4 Questions)

  • Q1. Core java and collections, exceptions and threading
  • Q2. Core java collections
  • Q3. Multi threading
  • Q4. Executor framework
Round 3 - One-on-one 

(1 Question)

  • Q1. Threading related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They posed questions assessing logical and analytical aptitude.

Round 2 - Coding Test 

After completing and passing the aptitude round, I was allowed to take the coding round exam, where the questions ranged from easy to medium level.

Round 3 - Technical 

(3 Questions)

  • Q1. Basic concepts of oops in java. DBMS questions.
  • Q2. Questions related to my projects not in dept.
  • Q3. They asked me to implement a stack using queues.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus primarily on the fundamentals such as Data Structures, Object-Oriented Programming, Computer Networks, Operating Systems, Database Management Systems, and standard SQL query questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - Coding Test 

Some questions that range from easy to medium level.

Round 2 - Technical 

(2 Questions)

  • Q1. General questions around your resume, the tech stacks you worked on, fundamentals and deepdive into that.
  • Q2. High level system design
Round 3 - One-on-one 

(1 Question)

  • Q1. Can you describe your experience, the projects you have worked on, challenges you solved and other stuffs around that.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Test was for Web Development - React
75min test
3 Questions
1 Coding Question
2 Scenario based questions

Round 2 - Technical 

(2 Questions)

  • Q1. React Optimization techniques
  • Q2. React Advantages
Round 3 - Behavioral 

(1 Question)

  • Q1. How to debug in production environment?
Round 4 - Behavioral 

(1 Question)

  • Q1. Challenges faced during work and how you overcome?
Round 5 - HR 

(1 Question)

  • Q1. Why you choose Wells fargo over other offers?
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. They grind u in javascript,typescript
  • Q2. Html css, angular
  • Q3. Deep preparation needed

Interview Preparation Tips

Interview preparation tips for other job seekers - Not an easy interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Informatica tech questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. Software Developer II interview?
JPMorgan Chase & Co. interview process usually has 1 rounds. The most common rounds in the JPMorgan Chase & Co. interview process are Technical.
What are the top questions asked in JPMorgan Chase & Co. Software Developer II interview?

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

  1. Design a trading system that works end-to-end with algos to process buy and sel...read more
  2. substrings with unique characters co...read more
  3. git PR review scenario based questi...read more

Tell us how to improve this page.

JPMorgan Chase & Co. Software Developer II Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 564 Interviews
Wells Fargo Interview Questions
3.8
 • 563 Interviews
Bajaj Finserv Interview Questions
4.0
 • 519 Interviews
HSBC Group Interview Questions
4.0
 • 484 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Deutsche Bank Interview Questions
3.9
 • 361 Interviews
American Express Interview Questions
4.2
 • 358 Interviews
BNY Interview Questions
3.9
 • 341 Interviews
UBS Interview Questions
3.9
 • 331 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
View all
JPMorgan Chase & Co. Software Developer II Salary
based on 30 salaries
₹15.5 L/yr - ₹32 L/yr
45% more than the average Software Developer II Salary in India
View more details
Associate
10.2k salaries
unlock blur

₹10.3 L/yr - ₹36 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.9 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