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 Development Engineer Intern Interview Questions and Answers

Updated 9 Aug 2024

JPMorgan Chase & Co. Software Development Engineer Intern Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa complex linked list graph

Round 2 - HR 

(1 Question)

  • Q1. Personality test online hirvue

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

On hacker rank duration was 90 min and 3 que to attempt and pass all the test cases

Round 2 - Technical 

(4 Questions)

  • Q1. About basic fundamentals about cn and oops and funfamental que and at the end a 5 min hr session by the interviewer itself
  • Q2. What is adressing mode and its types
  • Ans. 

    Addressing mode is a technique used in computer architecture to specify how to calculate the effective address of an operand.

    • Addressing mode determines how the CPU accesses data from memory

    • Types of addressing modes include direct, indirect, indexed, and register

    • Examples: direct addressing mode - MOV A, 1000H, indirect addressing mode - MOV A, [BX], indexed addressing mode - MOV A, [BX+SI], register addressing mode - MO

  • Answered by AI
  • Q3. What is tcp osi difference
  • Ans. 

    TCP is a transport layer protocol while OSI is a reference model for network communication.

    • TCP is a protocol responsible for establishing and maintaining a connection between two devices.

    • OSI is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven abstraction layers.

    • TCP operates at the transport layer (Layer 4) of the OSI model.

    • OSI model includes layers like physic...

  • Answered by AI
  • Q4. Reverse linkedlist in 3 steps
  • Ans. 

    Iterate through the linked list and reverse the pointers in 3 steps

    • Iterate through the linked list and keep track of the previous, current, and next nodes

    • Update the pointers to reverse the direction of the nodes

    • Repeat the process until the end of the linked list is reached

  • Answered by AI

Interview Preparation Tips

Topics to prepare for BNY Software Development Engineer Intern interview:
  • linked list
  • OOPS
  • computer neworks
Interview preparation tips for other job seekers - be consistent in your cosing

Skills evaluated in this interview

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

I applied via campus placement at Acropolis Institute of Technology and Research, Bhopal and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

API round to build rest API

Round 2 - Technical 

(2 Questions)

  • Q1. Problems with mongo DB
  • Ans. 

    Common problems with MongoDB include performance issues, data consistency concerns, and lack of transactions support.

    • Performance issues due to lack of proper indexing or inefficient queries

    • Data consistency concerns due to eventual consistency model

    • Lack of transactions support can lead to data integrity issues

  • Answered by AI
  • Q2. Express jS app coding

Interview Preparation Tips

Interview preparation tips for other job seekers - great company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you define clean code?
  • Ans. 

    Clean code is well-organized, easy to read, and maintainable code that follows best practices.

    • Clean code is easy to read and understand by other developers.

    • It follows consistent naming conventions for variables, functions, and classes.

    • Clean code is well-organized with proper indentation and spacing.

    • It avoids unnecessary complexity and duplication.

    • Clean code is modular and follows the single responsibility principle.

    • Exa...

  • Answered by AI
  • Q2. How to better test your code?
  • Ans. 

    To better test your code, use a combination of unit tests, integration tests, regression tests, and automated testing.

    • Write unit tests to test individual components or functions in isolation.

    • Perform integration tests to test how different components work together.

    • Implement regression tests to ensure that new code changes do not break existing functionality.

    • Utilize automated testing tools to run tests quickly and effici...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. There were 2 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 - Technical 

(5 Questions)

  • Q1. Pagination in SQL
  • Ans. 

    Pagination in SQL allows for displaying a subset of query results at a time.

    • Use LIMIT and OFFSET clauses in SQL queries to implement pagination.

    • LIMIT specifies the maximum number of rows to return.

    • OFFSET specifies the number of rows to skip before starting to return rows.

  • Answered by AI
  • Q2. OOPS concepts.. SOILD design principles
  • Q3. Thread vs task in multiprocessing.. explain with examples
  • Ans. 

    Threads and tasks are both used in multiprocessing, but have different characteristics and use cases.

    • Threads are lightweight processes within a single process, sharing memory space. They are managed by the operating system.

    • Tasks are units of work that can be executed asynchronously. They are typically managed by a task scheduler.

    • Threads are suitable for parallel processing and improving performance, while tasks are use...

  • Answered by AI
  • Q4. ViewBag vs Tempdata in MVC
  • Ans. 

    ViewBag is used to pass data from controller to view, while TempData is used to pass data between controller actions.

    • ViewBag is a dynamic property that allows you to pass data from controller to view

    • TempData is a dictionary object that allows you to pass data between controller actions

    • ViewBag is not type-safe and requires typecasting, while TempData is type-safe

    • ViewBag data is lost if redirection occurs, while TempData

  • Answered by AI
  • Q5. Abstract vs Interface
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods.

    • Interfaces can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of OOPS concepts, SQL joins

Skills evaluated in this interview

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

I applied via campus placement at MET Institute of Computer Science, Mumbai and was interviewed in Apr 2023. There were 4 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 - Aptitude Test 

Logical,quants,coding

Round 3 - Technical 

(3 Questions)

  • Q1. Java,sql,testing,sdlc
  • Q2. What is method overriding?
  • Ans. 

    Method overriding is a feature in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • In method overriding, the method in the subclass has the same name, return type, and parameters as the method in the parent class.

    • The purpose of method overriding is to provide a specific implementation of a method in the subclass that is different fr...

  • Answered by AI
  • Q3. What is exception handling in java?
  • Ans. 

    Exception handling in Java is a mechanism to handle runtime errors and prevent program crashes.

    • Exceptions are objects that represent errors or unexpected events during program execution.

    • Java provides try, catch, and finally blocks to handle exceptions.

    • try block contains the code that may throw an exception, catch block handles the exception, and finally block is executed regardless of an exception.

    • Example: try { // cod...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Normal questions
  • Q2. Why you want to join our company?

Interview Preparation Tips

Topics to prepare for BNP Paribas Software Developer interview:
  • Java

Skills evaluated in this interview

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

General apti questions

Round 2 - Group Discussion 

Work-life balance and career progression

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

Round 1 - Technical 

(2 Questions)

  • Q1. RestAPIs and Webservices
  • Q2. Microservices and Spring boot
Round 1 - Coding Test 

90 minutes
hacker Rank plotform

Round 2 - Technical 

(2 Questions)

  • Q1. What is data structure ?
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures are used to manage large amounts of data efficiently.

    • They provide a way to organize data in a way that makes it easy to access and manipulate.

    • Examples of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  • Answered by AI
  • Q2. What is linked list?
  • Ans. 

    A linked list is a linear data structure where each element is a separate object with a pointer to the next element.

    • Consists of nodes that contain data and a pointer to the next node

    • Can be singly or doubly linked

    • Used for dynamic memory allocation, implementing stacks and queues

    • Example: Singly linked list - 1 -> 2 -> 3 -> null

    • Example: Doubly linked list - null <- 1 <-> 2 <-> 3 -> null

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me about your project

Interview Preparation Tips

Interview preparation tips for other job seekers - kdnf djfndjf jdfbdsjbfdsjb jdfbdjfd kdf

Skills evaluated in this interview

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. Software Development Engineer Intern interview?
JPMorgan Chase & Co. interview process usually has 2 rounds. The most common rounds in the JPMorgan Chase & Co. interview process are Coding Test and HR.

Tell us how to improve this page.

JPMorgan Chase & Co. Software Development Engineer Intern Interview Process

based on 1 interview

Interview experience

3
  
Average
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
33% more than the average Software Development Engineer Intern Salary in India
View more details

JPMorgan Chase & Co. Software Development Engineer Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
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