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

Filter interviews by

JPMorgan Chase & Co. Sdet Lead Interview Questions and Answers

Updated 11 Aug 2024

JPMorgan Chase & Co. Sdet Lead Interview Experiences

1 interview found

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 11 Aug 2024

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

(2 Questions)

  • Q1. Java core advance questions
  • Q2. Testing concepts related questions

Interview questions from similar companies

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

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is salary expectating?
  • Ans. 

    I am looking for a competitive salary based on my experience and skills.

    • Research industry standards for SDET Engineer salaries

    • Consider my level of experience and skills

    • Factor in location and cost of living

    • Negotiate based on benefits and perks offered by the company

  • Answered by AI
  • Q2. What is your experience
  • Ans. 

    I have 5 years of experience in software development and testing, with a focus on automation and quality assurance.

    • 5 years of experience in software development and testing

    • Specialize in automation and quality assurance

    • Proficient in programming languages such as Java and Python

    • Experience with testing frameworks like Selenium and JUnit

    • Worked on various projects to improve testing processes and efficiency

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Hackerearth test 2 automata questions , 7 automata fix and 8 mcq

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

70mins on java code,and MCQ

Round 2 - Coding Test 

On Java programming 40 minutes

Round 3 - One-on-one 

(1 Question)

  • Q1. Did not clear 2nd round
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quant and verbal ability

Round 2 - Coding Test 

Questions from DSA and webdevelopement

Round 3 - HR 

(1 Question)

  • Q1. About my goals with the company and how will I contribute to it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and try to answer question in your own words rather than looking online for them

I applied via campus placement at SRM university (SRMU) and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Assignment 

Online api round . We had to send an api request to server

Round 2 - Coding Test 

One coding questions in the language of ur given preference . It was a basic dsa question

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy just clear ur basics, good communication skills and tech knowledge is required. Some good projects are cherry on top

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

I was interviewed in Jan 2022.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It was a L1 technical round where questions from DS algo were asked, along with my work exp and projects. It was a face to face video round with 2 panel members

  • Q1. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    import java.io.*;
    import java.util.*;
    public class Main
    {
    public static void DFS(int[][] input, int i, int j, int row, int col){
    if(i<0||j<0||i>row-1||j>col-1){
    return;
    }
    if(input[i][j]==1){
    input[i][j]=0;
    DFS(input,i+1,j,row,col);
    DFS(input,i-1,j,row,col);
    DFS(input,i,j+1,row,col);
    DFS(input,i,j-1,row,col);
    }
    }

    public static int countNumber(int[][] input, int row, int col){
    int count =0;
    for(int i=0;i {
    for(int j=0;j if(inpu...

  • Answered Anonymously
  • Q2. How can you prevent the breaking of the singleton pattern using reflections?
  • Ans. 

    Tip 1 : Provide correct answer i you know
    Tip 2 : Revise Java concepts

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was a System design round and the interviewer was very friendly, he gave ample hints and it was a productive interaction.

  • Q1. Design an LRU (Least Recently Used) cache.
  • Ans. 

    Tip 1 : Practise System Design well
    Tip 2 : Ask questions wherein necessary

  • Answered Anonymously
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

It was a standard manager where I was asked many questions related to my work exp and behavioural questions

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from IIIT,BBSR. I applied for the job as SDE - 2 in GurgaonEligibility criteriaNoAmerican Express interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, Java, DatabaseTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on Core Java and development 
Tip 2 : Practise easy -medium questions

Application resume tips for other job seekers

Tip 1 : Projects should be well defined use bullet points
Tip 2 : Describe your work ex/ intern exp well

Final outcome of the interviewSelected

Skills evaluated in this interview

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. Sdet Lead 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. Sdet Lead interview?

Some of the top questions asked at the JPMorgan Chase & Co. Sdet Lead interview -

  1. Testing concepts related questi...read more
  2. Java core advance questi...read more

Tell us how to improve this page.

JPMorgan Chase & Co. Sdet Lead Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 561 Interviews
Wells Fargo Interview Questions
3.9
 • 560 Interviews
Bajaj Finserv Interview Questions
4.0
 • 500 Interviews
HSBC Group Interview Questions
4.0
 • 489 Interviews
Goldman Sachs Interview Questions
3.6
 • 407 Interviews
Deutsche Bank Interview Questions
3.9
 • 361 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
BNY Interview Questions
3.9
 • 333 Interviews
Morgan Stanley Interview Questions
3.7
 • 304 Interviews
View all
JPMorgan Chase & Co. Sdet Lead Salary
based on 9 salaries
₹18 L/yr - ₹35 L/yr
20% less than the average Sdet Lead Salary in India
View more details
Associate
10.1k salaries
unlock blur

₹10 L/yr - ₹41 L/yr

Team Lead
5.5k salaries
unlock blur

₹5.6 L/yr - ₹16.5 L/yr

Vice President
3.9k salaries
unlock blur

₹26.1 L/yr - ₹85 L/yr

Analyst
2.6k salaries
unlock blur

₹6.3 L/yr - ₹25 L/yr

Software Engineer
2.5k salaries
unlock blur

₹10.5 L/yr - ₹34.9 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