Upload Button Icon Add office photos

BNP Paribas

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

BNP Paribas Software Developer Interview Questions and Answers

Updated 21 Oct 2023

BNP Paribas Software Developer Interview Experiences

1 interview found

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 Apr 2023. There were 4 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 Resume tips
Round 2 - Aptitude Test 

Logical,quants,coding

Round 3 - Technical 

(3 Questions)

  • Q1. Java,sql,testing,sdlc
  • Q2. What is method overriding?
  • Ans. 

    Method overriding is a feature in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • In method overriding, the method in the subclass has the same name, return type, and parameters as the method in the parent class.

    • The purpose of method overriding is to provide a specific implementation of a method in the subclass that is different fr...

  • Answered by AI
  • Q3. What is exception handling in java?
  • Ans. 

    Exception handling in Java is a mechanism to handle runtime errors and prevent program crashes.

    • Exceptions are objects that represent errors or unexpected events during program execution.

    • Java provides try, catch, and finally blocks to handle exceptions.

    • try block contains the code that may throw an exception, catch block handles the exception, and finally block is executed regardless of an exception.

    • Example: try { // cod...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Normal questions
  • Q2. Why you want to join our company?

Interview Preparation Tips

Topics to prepare for BNP Paribas Software Developer interview:
  • Java

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: The written test was quite similar to the typical CAT pattern. It contained sections on Reading Comprehension, Data Interpretation and Mathematics.

Round: Technical + HR Interview
Experience: There were 2 interviewers in the first interview, one was a technical guy and the other was from HR. They asked me a few very simple puzzles, a few basic programming questions (swapping the value of two variables etc.), questions related to the development cycle of software products. The HR guy asked stuff like what do you want to achieve in life? Strengths, weaknesses etc.

Round: Case Study Interview
Experience: The third interview was the most important one (and I guess that was the deciding interview). The interviewer started with questions like why finance? Which companies are you sitting for? Then he gave me a case study:

Interview Questionnaire 

2 Questions

  • Q1. Oops, os, dbms, project
  • Q2. Why hsbc, why should I hire you.
  • Ans. 

    I have a strong background in software engineering and a passion for innovation, making me a valuable asset to HSBC.

    • I have a proven track record of successfully delivering high-quality software solutions in previous roles.

    • I am highly skilled in various programming languages and technologies, including Java, Python, and SQL.

    • I have experience working in agile development environments, allowing me to adapt quickly to chan...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 4 sections, 15 questions each. Sections on apti, english, programming, technical.
Tips: Time management, complete english and technical first
Duration: 1 hour
Total Questions: 60

Round: Group Discussion
Experience: We were asked which super hero would you like to be. Shared the information. Always present the positives and negatives and emphasize that despite of being negatives
Tips: Think everything through before speaking
Duration: 40 minutes

Round: Technical Interview
Experience: Prepare well, anything can be asked on the things written on your resume

Round: HR Interview
Experience: Sell yourself. Tell them why you would be the best candidate.
Tips: Tell your advantages of being a fresher that you would be comfortable in any technology

College Name: Acropolis institute of technology and research

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

Interview Questionnaire 

1 Question

  • Q1. Few DSA questions, questions about my projects and my resume. Also, since I specialise in python, if I could create an API using it. HR questions, hobbies, leadership experience...

Interview Preparation Tips

Interview preparation tips for other job seekers - Understanding the culture of J.P. Morgan Chase played a big role in passing the interview. The coding questions were easy/medium level. The interviewers were very friendly.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Behavioural and culture fit

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Core Java, Java 8 features, OOPS Concepts, Design Patterns used in project, Spring core, Spring Security, Spring transaction management, Spring JPA
Round 2 - One-on-one 

(1 Question)

  • Q1. Project Experience, DSA related questions, scenario based questions
Round 3 - Coding Test 

CodeVue coding test, one coding questions based on regular expressions

Round 4 - HR 

(1 Question)

  • Q1. Contract Negotiation, Previous Experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Application of concepts is important than just concepts, some dsa and algorithms

I applied via Campus Placement and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Two questions were asked one ease level one moderate level, both questions were based on dsa topics. I would highly recommend to solve leetcode easy and medium questions.

Round 2 - Hirevue 

(1 Question)

  • Q1. Two HR type questions were asked on this platform, try to answer them as honestly as possible and keep it real.
Round 3 - CFG 

(1 Question)

  • Q1. CFG is an nationwide hackathon in which students from various different universities are put in one team and have to make a working project within the designated time frame.

Interview Preparation Tips

Interview preparation tips for other job seekers - Relax and don't panic anywhere in the entire process.

I applied via Referral and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Investment banks mostly ask multithreading questions or core concepts of java language.
Round 2 - Technical 

(1 Question)

  • Q1. In 2nd round also, they asked java and spring related questions.
Round 3 - Coding Test 

There was one coding round that contains one average type algo and we have to write the program for that.

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Software Engineer interview:
  • Multithreading
  • Core Java
  • java8
Interview preparation tips for other job seekers - now jpmc don't take that much tough technical rounds, overall interviews were average.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain difference between numpy array and list
  • Ans. 

    Numpy arrays are more efficient for numerical operations compared to lists.

    • Numpy arrays are homogeneous in nature, while lists can contain different data types.

    • Numpy arrays support vectorized operations, making them faster for numerical computations.

    • Numpy arrays require less memory compared to lists for large datasets.

    • Example: np_array = np.array([1, 2, 3]) vs list = [1, 2, 3]

  • Answered by AI
  • Q2. Coding question: Reverse words in sentence
Round 2 - Technical 

(2 Questions)

  • Q1. Covid Case Study
  • Q2. Merge two dataframe
  • Ans. 

    Merging two dataframes combines them into a single dataframe based on a common column or index.

    • Use the merge() function in pandas library in Python to merge dataframes

    • Specify the common column or index to merge on

    • Choose the type of join (inner, outer, left, right) based on your requirement

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready for random questions.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java Api debugging.
  • Q2. DSA coding question with modifications
Round 2 - System Design 

(1 Question)

  • Q1. Ai parking management system design
  • Ans. 

    Designing an AI parking management system to optimize parking space usage and improve efficiency.

    • Utilize sensors to detect available parking spaces in real-time

    • Implement machine learning algorithms to predict parking demand and optimize space allocation

    • Integrate with mobile apps for users to easily find and reserve parking spots

    • Use computer vision for license plate recognition and enforcement of parking rules

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Behavioral questions

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

BNP Paribas Interview FAQs

How many rounds are there in BNP Paribas Software Developer interview?
BNP Paribas interview process usually has 4 rounds. The most common rounds in the BNP Paribas interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for BNP Paribas Software Developer 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 SQL, Financial Services, .Net, Analytical and Angular.
What are the top questions asked in BNP Paribas Software Developer interview?

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

  1. What is exception handling in ja...read more
  2. What is method overridi...read more
  3. java,sql,testing,s...read more

Recently Viewed

INTERVIEWS

Pando

No Interviews

INTERVIEWS

Reliance Retail

No Interviews

LIST OF COMPANIES

DreamGains Financials India

Overview

SALARIES

DreamGains Financials India

No Salaries

COMPANY BENEFITS

DreamGains Financials India

No Benefits

INTERVIEWS

LinkedIn

No Interviews

LIST OF COMPANIES

GlobusSoft

Locations

INTERVIEWS

HyperVerge

No Interviews

REVIEWS

Wissen Technology

No Reviews

INTERVIEWS

DataMetica

No Interviews

Tell us how to improve this page.

BNP Paribas Software Developer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
BNP Paribas Software Developer Salary
based on 124 salaries
₹4.3 L/yr - ₹15.3 L/yr
9% more than the average Software Developer Salary in India
View more details

BNP Paribas Software Developer Reviews and Ratings

based on 19 reviews

4.3/5

Rating in categories

3.9

Skill development

4.6

Work-life balance

4.1

Salary

4.5

Job security

4.1

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 19 Reviews and Ratings
Senior Associate
2.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate 1
998 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
809 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
462 salaries
unlock blur

₹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