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. Analytical Research Associate Interview Questions and Answers

Updated 17 Jul 2024

JPMorgan Chase & Co. Analytical Research Associate Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Topic was renewable resources

Round 2 - Technical 

(2 Questions)

  • Q1. Warer jug problem
  • Q2. Aptitude (maths)

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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. SQL queries regarding your project
  • Q2. Pratice joining concepts
  • Q3. Regarding end to end intercation with your project manager
  • Q4. ETL process and tableau concepts
  • Q5. Dashboard related to Tableau

Interview Preparation Tips

Interview preparation tips for other job seekers - - Be confident
- Don't make you down at the time of interview.
- Answer what's real
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Macro quoting functions in SAS 2. ways to create macro variable in Data step 3. date functions-intck() and intnx() 4.situational scenario based questions 5.Automatic variables in SAS
  • Ans. 

    The interview questions cover topics such as macro quoting functions, creating macro variables, date functions, situational scenario-based questions, and automatic variables in SAS.

    • Macro quoting functions in SAS allow for the creation of macro variables with special characters.

    • Macro variables can be created in the data step using the %LET statement or by using the CALL SYMPUTX routine.

    • The date functions INTCK() and INT...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Wells Fargo Analytics Consultant interview:
  • SAS
  • SQL

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Sep 2022. There were 3 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 - Technical 

(1 Question)

  • Q1. Question related to BFSI - mostly from resume, collection startegy, Sas, project handling
Round 3 - Technical 

(1 Question)

  • Q1. Case studies related to collection, segmentation, market based questions in contact strategy
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL hard questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare v hard for sql

I applied via Naukri.com and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Logistic regression, modeling experience, choosing best model, SQL.. Find the third transaction of customer from dataset

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your CV properly, expect question to test your knowledge and experience.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Since this was management position leader was focussing questions on leadership experienced areas networking etc
Round 3 - Technical 

(1 Question)

  • Q1. Two US folks interviewed me .Both are in senior leadership positions. it was mix of technical and mgmnt
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What projects I worked before
  • Q2. Behavioural questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(7 Questions)

  • Q1. What is the meaning of Data Aggregation?
  • Ans. 

    Data aggregation refers to the process of combining and summarizing data from multiple sources into a single dataset.

    • Data aggregation involves collecting and merging data from various sources.

    • It aims to provide a consolidated view of the data for analysis and reporting.

    • Aggregated data is typically summarized using statistical functions like sum, average, count, etc.

    • Examples of data aggregation include calculating total...

  • Answered by AI
  • Q2. Delete duplicate Records in SQL
  • Ans. 

    To delete duplicate records in SQL, use the DELETE statement with a subquery to identify and remove the duplicates.

    • Use the GROUP BY clause to group the records by the columns that define duplicates.

    • Use the HAVING clause to filter the groups and keep only the duplicates.

    • Use the DELETE statement with a subquery to delete the duplicate records.

  • Answered by AI
  • Q3. What are the different types of Join used in SQL?
  • Ans. 

    Different types of joins in SQL include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and the matching rows from the right table

    • Right join returns all rows from the right table and the matching rows from the left table

    • Full outer join returns all rows from both tables, including unmatched rows

  • Answered by AI
  • Q4. What is subquary ? Why it is required ?
  • Ans. 

    Subquery is a query within another query. It is required to retrieve data from multiple tables or to perform complex calculations.

    • Subquery is enclosed within parentheses and is executed first before the main query.

    • It can be used in SELECT, FROM, WHERE, and HAVING clauses.

    • Subquery can be correlated or non-correlated.

    • Examples of subquery include finding the maximum or minimum value in a table, filtering data based on a c

  • Answered by AI
  • Q5. What is the meaning of Trigger in Python?
  • Ans. 

    A trigger in Python is an event that causes a specific function or code to execute.

    • Triggers can be used to automate tasks or respond to specific events.

    • They are often used in web development to execute code when a user interacts with a webpage.

    • Triggers can also be used in databases to execute code when certain data is inserted, updated, or deleted.

    • Examples of triggers in Python include mouse clicks, keyboard inputs, an

  • Answered by AI
  • Q6. Componets of Tableau ? What are the different connection is there in Tableau ?
  • Ans. 

    Tableau components include Desktop, Server, Prep, Online, Public. Different connections include live, extract, ODBC, cloud, etc.

    • Tableau components: Desktop, Server, Prep, Online, Public

    • Different connections: Live, Extract, ODBC, Cloud, etc.

    • Live connection: Directly connects to the data source and updates in real-time

    • Extract connection: Data is extracted and stored in Tableau's proprietary format for faster performance

    • O...

  • Answered by AI
  • Q7. Find out Top 5 highest paid Employees ?
  • Ans. 

    Top 5 highest paid employees are identified based on their salary.

    • Identify all employees and their salaries

    • Sort the employees based on their salary in descending order

    • Select the top 5 employees with the highest salary

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Wells Fargo Analytics Consultant interview:
  • SQL
  • SAS
  • Excel
Interview preparation tips for other job seekers - Be Cool and Calm .
Ask job related question if they allow you.

Skills evaluated in this interview

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

I applied via campus placement at Indian Institute of Technology (IIT), Kharagpur and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General altitude with MAT level question

Round 2 - Technical 

(4 Questions)

  • Q1. Questions from CV, guesstimates, data science questions
  • Q2. What is Random forest
  • Ans. 

    Random forest is an ensemble learning method used for classification and regression tasks.

    • Random forest is made up of multiple decision trees

    • Each tree in the forest is built using a subset of the training data and a random selection of features

    • The final prediction is made by averaging the predictions of all the individual trees

    • Random forest is known for its high accuracy and ability to handle large datasets

    • It is a popu...

  • Answered by AI
  • Q3. Hypothesis testing
  • Q4. Guesstimates Question on no.of marriage in a year
Round 3 - HR 

(1 Question)

  • Q1. Introduction, why Wells, strength, what do I know about it.

Skills evaluated in this interview

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. Analytical Research Associate interview?
JPMorgan Chase & Co. interview process usually has 2 rounds. The most common rounds in the JPMorgan Chase & Co. interview process are Group Discussion and Technical.
What are the top questions asked in JPMorgan Chase & Co. Analytical Research Associate interview?

Some of the top questions asked at the JPMorgan Chase & Co. Analytical Research Associate interview -

  1. Warer jug prob...read more
  2. Aptitude (mat...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 552 Interviews
Bajaj Finserv Interview Questions
4.0
 • 490 Interviews
HSBC Group Interview Questions
4.0
 • 485 Interviews
Goldman Sachs Interview Questions
3.6
 • 404 Interviews
Deutsche Bank Interview Questions
3.9
 • 357 Interviews
American Express Interview Questions
4.2
 • 354 Interviews
UBS Interview Questions
4.0
 • 333 Interviews
BNY Interview Questions
4.0
 • 326 Interviews
Morgan Stanley Interview Questions
3.7
 • 298 Interviews
Citicorp Interview Questions
3.7
 • 277 Interviews
View all
Associate
10.1k salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Team Lead
5.4k salaries
unlock blur

₹5.6 L/yr - ₹16.3 L/yr

Vice President
3.8k salaries
unlock blur

₹20 L/yr - ₹68 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview