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. Legal Counselor Interview Questions and Answers

Updated 5 Feb 2024

JPMorgan Chase & Co. Legal Counselor Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. What is derivative
  • Ans. 

    A derivative is a financial contract whose value is derived from an underlying asset or group of assets.

    • Derivatives are commonly used in financial markets for hedging, speculation, and arbitrage.

    • Examples of derivatives include options, futures contracts, and swaps.

    • Derivatives allow investors to gain exposure to the price movements of an asset without owning the asset itself.

    • They can be used to manage risk by offsetting...

  • Answered by AI
  • Q2. How to check a contract is a security
  • Ans. 

    To check if a contract is a security, consider the characteristics and regulations surrounding securities.

    • Look for the presence of investment of money

    • Check if there is an expectation of profits

    • Consider if the investment is in a common enterprise

    • Examine if the profits are derived from the efforts of others

    • Review applicable laws and regulations regarding securities

    • Consult legal experts or regulatory authorities if unsure

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to switch early?

Interview Preparation Tips

Interview preparation tips for other job seekers - Read your CV thoroughly

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Explain SCD Type 2 Implementation in Informatica
  • Ans. 

    SCD Type 2 is a technique used to track historical changes in data over time in a data warehouse.

    • SCD Type 2 maintains a separate row for each change in data, with a start and end date.

    • It requires a surrogate key to uniquely identify each row.

    • Informatica provides a built-in SCD Type 2 transformation to implement this technique.

    • Example: tracking changes in customer addresses over time.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on basic BI terminologies, common to trivial scenarios and introductory information on latest trending tools and technologies.

Skills evaluated in this interview

I applied via Referral and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to Python, my former organisation, why do you want to shift, questions related to different types of risk

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be on time and well dressed
Communication must be good
Answer questions if you can, if you don’t know just accept you don’t know

I applied via Campus Placement and was interviewed before Nov 2021. There were 3 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 - Aptitude Test 

Moderate level aptitude with basics

Round 3 - Coding Test 

Moderate level data structure questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and what what u speak because that is most important

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic accounting questions, knowledge testing of Finance and Financial Statements.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't speak lie.

I appeared for an interview in Sep 2020.

Interview Questionnaire 

1 Question

  • Q1. Walk me through your CV

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 2 rounds, first was mainly technical related to my previous experience for the process and 2nd was mainly if I've faced any difficulty in the past.

Interview Experience was fine as they are particular about their timings and both rounds took 30 mins each.

I applied via Campus Placement and was interviewed before Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Have you ever worked in a team and how did you manage conflicts?
  • Ans. Gave an example of an academic group project and explained in detail the conflict or clash of ideas and how we approached towards an agreement
  • Answered Anonymously
  • Q2. Why finance?
  • Ans. Natural skills of analysis and interest towards numbers. Love to deal anything involving money or resource management
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be natural and your own true self. If your natural skills are inclined towards the requirements, you will be hired or you will know where you have to improve.

I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Question realted to final year project
  • Q3. Why Morgan Stanley and what do you know about our company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the job description and know the job role as the interview questions are related to it.

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

I appeared for an interview before Jun 2016.

Interview Preparation Tips

Round: Test
Experience: 30 questions, 30

JPMorgan Chase & Co. Interview FAQs

How many rounds are there in JPMorgan Chase & Co. Legal Counselor interview?
JPMorgan Chase & Co. interview process usually has 2 rounds. The most common rounds in the JPMorgan Chase & Co. interview process are Technical and HR.
What are the top questions asked in JPMorgan Chase & Co. Legal Counselor interview?

Some of the top questions asked at the JPMorgan Chase & Co. Legal Counselor interview -

  1. How to check a contract is a secur...read more
  2. What is derivat...read more

Tell us how to improve this page.

JPMorgan Chase & Co. Legal Counselor Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 570 Interviews
Citicorp Interview Questions
3.7
 • 570 Interviews
Bajaj Finserv Interview Questions
4.0
 • 528 Interviews
HSBC Group Interview Questions
3.9
 • 487 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
BNY Interview Questions
3.9
 • 346 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.7
 • 292 Interviews
Morningstar Interview Questions
3.9
 • 242 Interviews
View all
Associate
10.3k salaries
unlock blur

₹10 L/yr - ₹43.1 L/yr

Team Lead
5.6k salaries
unlock blur

₹5.6 L/yr - ₹18 L/yr

Vice President
4.1k salaries
unlock blur

₹20 L/yr - ₹70 L/yr

Analyst
2.6k salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Software Engineer
2.6k salaries
unlock blur

₹10.7 L/yr - ₹35 L/yr

Explore more salaries
Compare JPMorgan Chase & Co. with

Morgan Stanley

3.6
Compare

Goldman Sachs

3.5
Compare

TCS

3.7
Compare

Bank of America

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