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

Filter interviews by

JPMorgan Chase & Co. Sde1 Interview Questions and Answers

Updated 6 Aug 2022

JPMorgan Chase & Co. Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 6 Aug 2022

Round 1 - Coding Test 

DSA
OOPS
C++
DBMS
OS
CN
BASIC MATHS
PROBABILITY
CALCULUS

Round 2 - Technical 

(1 Question)

  • Q1. DSA PROBABITLITY OOPS PROGRAMMING BASICS C++

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well from geeks for geeks and solve lots of DSA questions. also be thorough with whatever you write on your resume, every subject everything revise it beforehand

Interview questions from similar companies

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

2 medium dsa que - one is of binary search, one is from graph

Round 2 - Technical 

(2 Questions)

  • Q1. Define oops principle
  • Ans. 

    OOPs principles are the fundamental concepts of object-oriented programming that help in designing and implementing software solutions.

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

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

    • Polymorphism: The ability of different classes to be treated as instances of a common superclass.

    • Abstraction: ...

  • Answered by AI
  • Q2. Define os concepts
  • Ans. 

    OS concepts refer to fundamental principles and components of operating systems.

    • Process management - handling processes, scheduling, and resource allocation

    • Memory management - managing memory allocation, virtual memory, and paging

    • File system - organizing and accessing files on storage devices

    • Device management - controlling and communicating with hardware devices

    • Security and protection - ensuring system and data securit...

  • Answered by AI

Skills evaluated in this interview

Sde1 Interview Questions & Answers

BNY user image Anonymous

posted on 1 Sep 2022

Round 1 - Coding Test 

4 coding question 1 easy ,2 medium and 1 hard

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview, asked about my project, then DSA question , count number of palindromic substring

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA, build your resume and profile with good projects and understand them deeply , practice good level DSA questions

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

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
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is list comprehension
  • Ans. 

    List comprehension is a concise way to create lists in Python by applying an expression to each item in an iterable.

    • List comprehension is written inside square brackets []

    • It consists of an expression followed by a for clause, then zero or more if clauses

    • Example: squares = [x**2 for x in range(10)]

  • Answered by AI
  • Q2. Explain spark architecture
  • Ans. 

    Apache Spark is a distributed computing system that provides an interface for programming entire clusters with implicit data parallelism and fault tolerance.

    • Apache Spark follows a master-slave architecture with a driver program that communicates with a cluster manager to distribute work across worker nodes.

    • It uses Resilient Distributed Datasets (RDDs) as the basic data structure, which are immutable distributed collect...

  • Answered by AI
Round 2 - Coding Test 

Write code for palindtomr

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 coding question based on DP for 25 minutes and 30 MCQs on Java , OOPS and code snippet questions also some basic questions based on trees like number of leaf nodes in a complete binary tree with n nodes.

Round 2 - Technical 

(3 Questions)

  • Q1. Write code for finding palindrome of a string
  • Ans. 

    Code to find palindrome of a string

    • Iterate through the string from both ends and compare characters

    • Use two pointers, one starting from the beginning and one from the end

    • If characters at both pointers match, continue checking until they meet in the middle

    • If all characters match, the string is a palindrome

  • Answered by AI
  • Q2. What is dynamic memory allocation in Java
  • Ans. 

    Dynamic memory allocation in Java refers to the process of allocating memory for objects at runtime.

    • Dynamic memory allocation allows for objects to be created and destroyed during program execution.

    • The 'new' keyword is used to dynamically allocate memory for objects in Java.

    • Dynamic memory allocation helps in managing memory efficiently by allocating memory only when needed.

    • Example: int[] arr = new int[5]; dynamically a

  • Answered by AI
  • Q3. You are designing an e commerce website which database will you choose and what will you use for authentication given that you can't use JWT or even third party like Google authentication
  • Ans. 

    I would choose a relational database like MySQL and implement a custom authentication system using session management.

    • Choose a relational database like MySQL for storing user data, product information, and orders.

    • Implement a custom authentication system using session management to securely authenticate users without JWT or third-party services.

    • Use encryption techniques to store and validate user passwords securely.

    • Util...

  • Answered by AI

Skills evaluated in this interview

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

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Write code to return the maximum profit by buying and selling stocks using available money

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. Sde1 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 Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 560 Interviews
Wells Fargo Interview Questions
3.9
 • 554 Interviews
Bajaj Finserv Interview Questions
4.0
 • 497 Interviews
HSBC Group Interview Questions
4.0
 • 488 Interviews
Goldman Sachs Interview Questions
3.6
 • 406 Interviews
Deutsche Bank Interview Questions
3.9
 • 357 Interviews
American Express Interview Questions
4.2
 • 357 Interviews
UBS Interview Questions
4.0
 • 334 Interviews
BNY Interview Questions
4.0
 • 332 Interviews
Morgan Stanley Interview Questions
3.7
 • 301 Interviews
View all
JPMorgan Chase & Co. Sde1 Salary
based on 12 salaries
₹9 L/yr - ₹18 L/yr
34% less than the average Sde1 Salary in India
View more details

JPMorgan Chase & Co. Sde1 Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

2.0

Work-life balance

2.0

Salary

2.0

Job security

2.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Associate
10.1k salaries
unlock blur

₹10 L/yr - ₹42 L/yr

Team Lead
5.4k salaries
unlock blur

₹5.6 L/yr - ₹16.5 L/yr

Vice President
3.9k salaries
unlock blur

₹20 L/yr - ₹68.2 L/yr

Analyst
2.5k salaries
unlock blur

₹6.3 L/yr - ₹25 L/yr

Software Engineer
2.4k 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.6
Compare

TCS

3.7
Compare

Bank of America

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