Upload Button Icon Add office photos

BNP Paribas

Compare button icon Compare button icon Compare

Filter interviews by

BNP Paribas Interview Questions, Process, and Tips

Updated 3 Mar 2025

Top BNP Paribas Interview Questions and Answers

View all 113 questions

BNP Paribas Interview Experiences

Popular Designations

178 interviews found

I applied via Approached by Company and was interviewed in Dec 2021. There were 5 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of SQL, types of joins, cursors, triggers
  • Q2. Functions and Procedures and differences between them
  • Ans. 

    Functions and procedures are both stored database objects used to perform specific tasks in SQL.

    • Functions return a value while procedures do not.

    • Functions can be used in SQL statements, whereas procedures cannot.

    • Functions can have input parameters and return a single value, while procedures can have input and output parameters.

    • Functions are typically used for calculations or data manipulation, while procedures are used...

  • Answered by AI
  • Q3. Performance tuning of SQL query
  • Ans. 

    Performance tuning of SQL query

    • Identify slow queries using profiling tools

    • Optimize query structure and use indexes

    • Reduce data retrieval by filtering and limiting results

    • Avoid using subqueries and nested queries

    • Use appropriate data types and avoid unnecessary conversions

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Similar questions to TR1, but this time with more depth and at advanced level
  • Q2. Given sample data on two tables, write down the result sets of all types joins.
  • Ans. 

    The result sets of all types of joins in SQL

    • Inner Join: Returns only the matching rows from both tables

    • Left Join: Returns all the rows from the left table and the matching rows from the right table

    • Right Join: Returns all the rows from the right table and the matching rows from the left table

    • Full Outer Join: Returns all the rows from both tables, including the unmatched rows

    • Cross Join: Returns the Cartesian product of b

  • Answered by AI
  • Q3. Write down a procedure to return a certain series (99, 96, 93, ...., 6, 3)
  • Ans. 

    Procedure to return a series (99, 96, 93, ...., 6, 3)

    • Create a temporary table with a single column

    • Use a loop to insert values into the temporary table

    • Return the values from the temporary table in descending order

  • Answered by AI
  • Q4. Extract execution plan of a SQL query
  • Ans. 

    To extract execution plan of a SQL query, use EXPLAIN or SHOW PLAN command.

    • Use EXPLAIN or SHOW PLAN command before the SQL query

    • EXPLAIN command shows the execution plan in a tabular format

    • SHOW PLAN command shows the execution plan in a graphical format

    • Execution plan helps in optimizing the query for better performance

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Basic questions on project structure, development approach
  • Q2. How is a change request in application serviced by development team (business analysis, code analysis, discussion with BA, requirment freeze, etc.)
  • Ans. 

    A change request in an application is serviced by the development team through various stages such as business analysis, code analysis, discussion with BA, and requirement freeze.

    • The development team starts by analyzing the change request to understand its impact on the application.

    • They perform business analysis to determine the feasibility and potential risks of implementing the change.

    • Code analysis is conducted to as...

  • Answered by AI
Round 4 - Behavioral 

(1 Question)

  • Q1. Casual meeting wrt expectations from project, work culture, etc.
Round 5 - HR 

(1 Question)

  • Q1. CTC, location negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Theoretical knowledge is not preferred. Whatever is present in the resume, make sure you have hands-on experience in that.

Skills evaluated in this interview

Top BNP Paribas SQL Developer Interview Questions and Answers

Q1. How is a change request in application serviced by development team (business analysis, code analysis, discussion with BA, requirment freeze, etc.)
View answer (4)

SQL Developer Interview Questions asked at other Companies

Q1. How is a change request in application serviced by development team (business analysis, code analysis, discussion with BA, requirment freeze, etc.)
View answer (4)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Basic questions on python
  • Q2. Difference between list tuple
  • Ans. 

    Lists and tuples are both data structures in Python, but lists are mutable while tuples are immutable.

    • Lists are enclosed in square brackets [], while tuples are enclosed in parentheses ().

    • Lists can be modified after creation, while tuples cannot be modified (immutable).

    • Lists are typically used for collections of similar items, while tuples are used for fixed collections of items.

    • Example: list = [1, 2, 3] and tuple = (4

  • Answered by AI
  • Q3. Area of room 6D
  • Ans. 

    The area of a room can be calculated by multiplying the length by the width.

    • Calculate the area by multiplying the length and width of the room.

    • For example, if the length of the room is 10 feet and the width is 12 feet, the area would be 120 square feet.

    • Make sure to use the same units for length and width when calculating the area.

  • Answered by AI
  • Q4. Most emberacing situation u faced in your life
  • Ans. 

    Getting caught cheating on a test in high school

    • Was copying answers from a classmate during a test

    • Teacher caught me and called me out in front of the whole class

    • Felt embarrassed and learned my lesson about cheating

  • Answered by AI
  • Q5. Behavior questions like what will u do if this happens

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)
BNP Paribas Interview Questions and Answers for Freshers
illustration image

Senior Engineer Interview Questions & Answers

user image Pratyush Prakash.

posted on 19 Oct 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Multi threading print odd even with 2 threads but output should be in sync
  • Ans. 

    Use two threads to print odd and even numbers in sync

    • Create two threads, one for printing odd numbers and one for printing even numbers

    • Use synchronization mechanisms like mutex or semaphore to ensure output is in sync

    • Example: Thread 1 prints odd numbers (1, 3, 5, ...) and Thread 2 prints even numbers (2, 4, 6, ...)

  • Answered by AI
  • Q2. Largest common prefix in string array
  • Ans. 

    Find the largest common prefix among an array of strings.

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings.

    • Stop when a mismatch is found or when reaching the end of any string.

    • Return the prefix found so far.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Saga pattern in microservice
  • Ans. 

    Saga pattern is a design pattern used in microservices architecture to manage distributed transactions.

    • Saga pattern breaks down a transaction into a series of smaller, independent steps.

    • Each step in the saga is a separate transaction that can be rolled back if needed.

    • If one step fails, compensating transactions can be executed to undo the changes made by previous steps.

    • Saga pattern helps maintain data consistency in a ...

  • Answered by AI
  • Q2. API validation and security
Round 3 - Technical 

(2 Questions)

  • Q1. Micro service inter communication
  • Q2. Hash map hash set implementation
  • Ans. 

    Hash map and hash set are data structures that use hashing to store key-value pairs and unique values respectively.

    • Hash map uses key-value pairs where keys are hashed to find the corresponding value

    • Hash set stores unique values using hashing to quickly check for duplicates

    • Example: HashMap map = new HashMap<>(); HashSet set = new HashSet<>();

  • Answered by AI
Round 4 - One-on-one 

(3 Questions)

  • Q1. Validation frame work .
  • Q2. Design pattern , .
  • Q3. Singleton pattern and how to break
  • Ans. 

    Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Singleton pattern involves a private constructor, a static method to access the instance, and a static variable to hold the instance.

    • To break the singleton pattern, one can use reflection to access the private constructor and create multiple instances.

    • Another way to break the singleton pattern is by using serialization a

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Negotiation on package .
  • Q2. Why to join here
  • Ans. 

    I am excited about the innovative projects and collaborative team environment at this company.

    • Opportunity to work on cutting-edge projects

    • Collaborative team environment

    • Strong company culture and values

    • Room for growth and advancement

    • Positive reputation in the industry

  • Answered by AI

Skills evaluated in this interview

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (57)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions about sql and PLSQL topics
  • Q2. Scenario based questions and write few sql queries
Round 2 - Technical 

(2 Questions)

  • Q1. Performance tuning related questions
  • Q2. Explain project details

Plsql Developer Interview Questions asked at other Companies

Q1. What is procedure in plsql and it's syntax and difference between procedure and function?
View answer (7)

BNP Paribas interview questions for popular designations

 Senior Associate

 (19)

 Associate

 (13)

 Associate 1

 (8)

 Intern

 (8)

 Assistant Manager

 (7)

 Senior Software Engineer

 (6)

 Business Analyst

 (4)

 Test Engineer

 (3)

Support Analyst Interview Questions & Answers

user image Karan Pardi

posted on 17 Aug 2024

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

(2 Questions)

  • Q1. Questions related to Database queries. e.g:- how to delete the duplicate record.
  • Q2. Linux commands. e.g :- how to grep only numbers from a file
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions on change management
  • Q2. Situation based questions
Round 3 - Behavioral 

(2 Questions)

  • Q1. Explain the trade life cycle
  • Ans. 

    The trade life cycle refers to the stages involved in the processing of a trade from initiation to settlement.

    • Initiation: Trade is proposed and agreed upon by parties involved.

    • Execution: Trade is executed on the agreed terms.

    • Confirmation: Parties confirm the details of the trade.

    • Clearing: Trade details are matched and processed for settlement.

    • Settlement: Actual exchange of funds and securities takes place.

    • Post-trade: A...

  • Answered by AI
  • Q2. Prioritising of issues
  • Ans. 

    Prioritising issues involves assessing urgency, impact, and resources available to address them.

    • Assess urgency of each issue based on impact on business operations

    • Consider impact on customers or stakeholders

    • Evaluate resources available to address each issue

    • Prioritise issues based on urgency, impact, and available resources

    • Communicate priorities to stakeholders and team members

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why you left the previous organisation
  • Q2. What do you expect from our company

Support Analyst Interview Questions asked at other Companies

Q1. How many DFF can be used for GL Accounting Segment.
View answer (1)

Get interview-ready with Top BNP Paribas Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Oct 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Spring cloud gateway
  • Q2. JWT Token structure and details
  • Ans. 

    JWT token is a JSON web token used for authentication and contains three parts: header, payload, and signature.

    • JWT token consists of three parts: header, payload, and signature.

    • Header contains the type of token and the signing algorithm used.

    • Payload contains claims about the user and additional data.

    • Signature is used to verify that the sender of the JWT is who it says it is.

    • JWT tokens are encoded and can be easily deco...

  • Answered by AI
  • Q3. Java 11 features
  • Q4. Stream related problems

Senior Java Developer Interview Questions asked at other Companies

Q1. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Linked List. Input: The first line of ... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Why you want to apply for this role?

Transaction Processing Associate Interview Questions asked at other Companies

Q1. How much money your father needs to buy food for your family?
View answer (2)

Associate Interview Questions & Answers

user image Anonymous

posted on 21 Jan 2025

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

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Asked many questions regarding banking trade, fees management, transaction monitoring, Derivatives
  • Q2. What do you know about derivatives?
  • Ans. 

    Derivatives are financial instruments whose value is derived from an underlying asset or group of assets.

    • Derivatives can be used for hedging, speculation, or arbitrage.

    • Common types of derivatives include options, futures, forwards, and swaps.

    • For example, a call option gives the holder the right to buy an asset at a specified price within a certain time frame.

    • Derivatives are traded on exchanges or over-the-counter (OTC)

  • Answered by AI
  • Q3. Type of risk you handled in your current process
  • Ans. 

    I handled operational risk in my current process.

    • Identifying potential risks in daily operations

    • Implementing controls to mitigate risks

    • Monitoring and evaluating the effectiveness of risk management strategies

  • Answered by AI
  • Q4. Scenario based question

Associate Interview Questions asked at other Companies

Q1. What is mean of TTR &amp; why required for powder coating process ?
View answer (17)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 7 Nov 2024

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

(2 Questions)

  • Q1. Not applicable question
  • Q2. Not applicable questions
Round 2 - HR 

(2 Questions)

  • Q1. HR round was crucial as the third round
  • Q2. HR round was crucial

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic accounting questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is financial market
  • Ans. 

    Financial market is a platform where buyers and sellers trade financial securities, commodities, and other fungible items.

    • Financial markets facilitate the exchange of assets such as stocks, bonds, currencies, and derivatives.

    • They provide a platform for companies to raise capital through issuing stocks or bonds.

    • Financial markets can be categorized into primary markets (new securities are issued) and secondary markets (e...

  • Answered by AI
  • Q2. What is investment banking
  • Ans. 

    Investment banking involves providing financial services to corporations, governments, and other institutions.

    • Facilitates mergers and acquisitions

    • Underwrites securities offerings

    • Provides financial advisory services

    • Assists with raising capital for clients

    • Engages in trading and market-making activities

  • Answered by AI
  • Q3. What is Net Asset Value
  • Ans. 

    Net Asset Value (NAV) is the value of a fund's assets minus its liabilities, divided by the number of shares outstanding.

    • NAV is calculated by subtracting the fund's liabilities from its assets.

    • The result is then divided by the number of shares outstanding to determine the NAV per share.

    • NAV is used to determine the price at which investors can buy or sell shares of the fund.

    • It is an important metric for investors to tra

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a detail-oriented professional with a strong background in accounting and a passion for financial analysis.

    • I have a Bachelor's degree in Accounting and have worked in the finance industry for 5 years.

    • I am proficient in financial reporting, reconciliations, and fund accounting principles.

    • I have experience using accounting software such as QuickBooks and Excel to analyze financial data.

    • I am a team player and have ex...

  • Answered by AI
  • Q2. Journal entries
  • Q3. Talk on current affairs
  • Ans. 

    I will discuss the impact of COVID-19 on the global economy and financial markets.

    • COVID-19 pandemic led to economic slowdown worldwide

    • Stock markets experienced volatility due to uncertainty

    • Central banks implemented stimulus measures to support economies

    • Remote work became the norm for many industries

    • Supply chain disruptions affected various sectors

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn much about financial markets, securities, primary and secondary markets

Fund Accountant Interview Questions asked at other Companies

Q1. What was the journal entry for prepaid rent which has paid at beginning of the month for the whole year and entry at the end of month ?? Which is entry affects the networth??
View answer (5)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Linux Administrator with 8+ years of hands-on experience in managing and troubleshooting Linux servers.

    • 8+ years of experience in Linux system administration

    • Strong knowledge of server configuration, maintenance, and troubleshooting

    • Proficient in shell scripting and automation tools like Ansible

    • Experience with virtualization technologies such as VMware and KVM

    • Familiarity with networking protocols and security

  • Answered by AI
  • Q2. What is biggest issue facing in the real time work environment and how can you handle it
  • Ans. 

    The biggest issue facing in the real time work environment is managing system downtime effectively.

    • Implementing proper monitoring tools to detect issues early

    • Creating a detailed incident response plan

    • Regularly testing backups and disaster recovery procedures

    • Utilizing automation for routine tasks to reduce human error

    • Establishing clear communication channels for notifying stakeholders during downtime

  • Answered by AI
  • Q3. How can you work on under the deadline
  • Ans. 

    I prioritize tasks, break them down into smaller steps, set milestones, and communicate effectively with team members to ensure timely completion.

    • Prioritize tasks based on importance and urgency

    • Break down tasks into smaller steps to make them more manageable

    • Set milestones to track progress and stay on schedule

    • Communicate effectively with team members to coordinate efforts and address any obstacles

    • Utilize time managemen...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Patching related question
  • Q2. Linux Administrator role commands related questions
  • Q3. Troubleshooting related question
Round 3 - Technical 

(3 Questions)

  • Q1. Day to day activity related questions
  • Q2. What are tools you used and briefly explain and why it is used
  • Ans. 

    Some tools used by Senior Linux Administrators include Ansible, Nagios, and Docker.

    • Ansible - used for automation of tasks and configuration management

    • Nagios - used for monitoring and alerting of system and network resources

    • Docker - used for containerization of applications for easy deployment and management

  • Answered by AI
  • Q3. Troubleshooting related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in your core knowledge and be confident to face the interview and try to answer all the questions

Senior Linux Administrator Interview Questions asked at other Companies

Q1. What are tools you used and briefly explain and why it is used
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

BNP Paribas Interview FAQs

How many rounds are there in BNP Paribas interview?
BNP Paribas interview process usually has 2-3 rounds. The most common rounds in the BNP Paribas interview process are Technical, HR and One-on-one Round.
How to prepare for BNP Paribas interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at BNP Paribas. The most common topics and skills that interviewers at BNP Paribas expect are Financial Services, Analytical, Reconciliation, Retail Banking and Operations.
What are the top questions asked in BNP Paribas interview?

Some of the top questions asked at the BNP Paribas interview -

  1. How is a change request in application serviced by development team (business a...read more
  2. What are derivatives, capital market, money market?. What is the formula for NA...read more
  3. if we dont specify anything in group by aggregator what will hap...read more
How long is the BNP Paribas interview process?

The duration of BNP Paribas interview process can vary, but typically it takes about 2-4 weeks to complete.

Recently Viewed

INTERVIEWS

Dell EMC

No Interviews

INTERVIEWS

Dell EMC

No Interviews

INTERVIEWS

BNP Paribas

No Interviews

INTERVIEWS

AIRBUS

No Interviews

INTERVIEWS

AIRBUS

No Interviews

INTERVIEWS

AIRBUS

No Interviews

INTERVIEWS

Ansys Software Private Limited

No Interviews

INTERVIEWS

AIRBUS

No Interviews

INTERVIEWS

Dell EMC

No Interviews

Tell us how to improve this page.

BNP Paribas Interview Process

based on 157 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
IndusInd Bank Interview Questions
3.5
 • 603 Interviews
HSBC Group Interview Questions
4.0
 • 484 Interviews
Yes Bank Interview Questions
3.7
 • 429 Interviews
RBL Bank Interview Questions
3.6
 • 173 Interviews
View all

BNP Paribas Reviews and Ratings

based on 1.6k reviews

3.8/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.4

Salary

4.1

Job security

3.7

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 1.6k Reviews and Ratings
Assistant Manager - Financial & Management Accounting

Mumbai Suburban

5-10 Yrs

₹ 5-15 LPA

OPC - APAC CCCO Project Manager

Mumbai

10-16 Yrs

₹ 18-26 LPA

Explore more jobs
Senior Associate
2.1k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Assistant Manager
1.3k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Associate 1
998 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Associate
809 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
462 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare BNP Paribas with

HSBC Group

3.9
Compare

Standard Chartered

3.7
Compare

ICICI Bank

4.0
Compare

HDFC Bank

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