Upload Button Icon Add office photos

BNP Paribas

Compare button icon Compare button icon Compare

Filter interviews by

BNP Paribas Software Trainee Interview Questions and Answers

Updated 10 Jun 2022

BNP Paribas Software Trainee Interview Experiences

1 interview found

I applied via campus placement at Vel tech multitech dr.rangarajan dr.sakunthala engineering college, Chennai and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Same as all aptitude tests they will give u 7 coding but there will be some mistake in coding we should find and solve that for any 3 or 1 we get a interview call.

Round 2 - Technical 

(1 Question)

  • Q1. They will ask u to write coding in note pad and they will ask data structure questions thats it. Add 2 numbers in all languages On data structure: about binary search.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident what u know just speak out.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Amrita Institute of Advanced Computing, Coimbatore and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test was pretty easy

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a string
  • Q2. About projects
Round 3 - HR 

(2 Questions)

  • Q1. Explain about yourself
  • Q2. Where do you see yourself in 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident about your skills
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you define clean code?
  • Ans. 

    Clean code is well-organized, easy to read, and maintainable code that follows best practices.

    • Clean code is easy to read and understand by other developers.

    • It follows consistent naming conventions for variables, functions, and classes.

    • Clean code is well-organized with proper indentation and spacing.

    • It avoids unnecessary complexity and duplication.

    • Clean code is modular and follows the single responsibility principle.

    • Exa...

  • Answered by AI
  • Q2. How to better test your code?
  • Ans. 

    To better test your code, use a combination of unit tests, integration tests, regression tests, and automated testing.

    • Write unit tests to test individual components or functions in isolation.

    • Perform integration tests to test how different components work together.

    • Implement regression tests to ensure that new code changes do not break existing functionality.

    • Utilize automated testing tools to run tests quickly and effici...

  • Answered by AI

Skills evaluated in this interview

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

General apti questions

Round 2 - Group Discussion 

Work-life balance and career progression

I applied via Campus Placement and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Total 4 questions are asked one easy two medium and one hard

Round 2 - Technical 

(3 Questions)

  • Q1. More emphasis on dbms and oops
  • Q2. Questions on similar to quick sort and tree balance and linked list question
  • Q3. Projects related questions
Round 3 - Technical 

(3 Questions)

  • Q1. Some basic questions of sql
  • Q2. Some questions related to arrays
  • Q3. Projects i worked detail explanation
  • Ans. 

    I have worked on various projects including a web application for a retail company and a mobile app for a fitness startup.

    • Developed a web application using React and Node.js for a retail company to manage their inventory and sales.

    • Created a mobile app using React Native for a fitness startup to track workouts and progress.

    • Collaborated with a team to build a chatbot using Dialogflow and Node.js for a healthcare company.

    • ...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Basic hr questions asked
  • Q2. More emphasis on technologies and projects i worked

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice coding nicely and keep atleast two nice projects

I applied via campus placement at Indian Institute of Technology (IIT), Guwahati and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me something about yourself
  • Q2. Why do you want to join Amex?
  • Q3. Where do you see yourself in next 2-3 years?
  • Q4. What matters most in a company - it's people, it's culture or it's tech stack?

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have very good command on what you have written in your CV. You also need to have very basic idea about what the company is doing.

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Java 8 functional interface, lambdas etc
  • Q2. Spring boot exception handling mechanism
  • Q3. Rest api methods and working
  • Ans. 

    REST API methods are used to interact with web services using HTTP requests.

    • GET method is used to retrieve data from the server

    • POST method is used to create new data on the server

    • PUT method is used to update existing data on the server

    • DELETE method is used to delete data from the server

    • REST APIs use HTTP status codes to indicate the success or failure of a request

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well by doing practice, should have hands on in coding as it was a difficult interview

Skills evaluated in this interview

I applied via Referral and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. Basic Java concepts like abstraction, JDK 1.8 architecture brief overview.
  • Q2. What is weak reference? garbage collection in case of such references?
  • Ans. 

    Weak reference is a reference that does not prevent the object from being garbage collected.

    • Weak references are used to refer to objects that can be garbage collected if there are no strong references to them.

    • They are typically used in scenarios where you want to hold a reference to an object, but don't want to prevent it from being collected.

    • Weak references are implemented using weak reference queues, which allow you ...

  • Answered by AI
  • Q3. Implementation of singleton pattern and ways of breaking it? singleton pattern implementation in a multithreaded environment?
  • Ans. 

    Singleton pattern ensures a class has only one instance, while allowing global access to it.

    • Implement a private constructor to prevent direct instantiation.

    • Create a static method to provide a single point of access to the instance.

    • Use lazy initialization to create the instance only when needed.

    • Ensure thread safety in a multithreaded environment using synchronization or double-checked locking.

    • Breaking the singleton patt...

  • Answered by AI
  • Q4. Annotations : @Component vs @service, @Controller vs @RESTController, @Configuration, @Transactional
  • Ans. 

    Annotations used in Spring Framework for defining components and services.

    • Annotations like @Component, @Service, and @Controller are used for defining components in Spring Framework.

    • @RestController is used for defining RESTful web services.

    • @Configuration is used for defining configuration classes.

    • @Transactional is used for defining transactional methods.

    • All these annotations help in defining and managing dependencies i

  • Answered by AI
  • Q5. Internal implementation of HashSet? Which scenario will generate same hashcode for a HashMap?
  • Ans. 

    HashSet is implemented using a HashMap internally. Same hashcode is generated when two objects have the same value for hashCode() and equals() methods.

    • HashSet internally uses a HashMap to store its elements.

    • The hashcode of an object is generated using the hashCode() method.

    • If two objects have the same value for hashCode() and equals() methods, they will generate the same hashcode.

    • For example, if two String objects have...

  • Answered by AI
  • Q6. What is SQL Cursor? Index? Aggregate Functions examples?
  • Ans. 

    SQL Cursor is a database object used to manipulate data row by row.

    • Cursor is used to fetch and process data row by row

    • Index is a database object used to speed up data retrieval

    • Aggregate functions are used to perform calculations on a set of values

    • Examples of aggregate functions are SUM, AVG, COUNT, MAX, MIN

  • Answered by AI
  • Q7. Basic Java programming question:- Generate palindrome string inputs for the program are length of the string and number of distinct characters. If n=5 & k=2 output = ababa/zzdzz/rerer. If n=7 & k=3 output=...
  • Ans. 

    Generate palindrome string with given length and distinct characters.

    • Create a char array of length n and fill it with distinct characters.

    • Loop through the array and add the characters in reverse order to create a palindrome.

    • Repeat the process until the required number of palindromes are generated.

    • If k is less than the length of the palindrome, use the first k distinct characters.

  • Answered by AI
  • Q8. Given an array with length n , find highest value which occurs same number of times within the array. [3,8,3,2,1,3,2] 3 occurs 3 times output=3. [4,6,7,6,7,5,4,2,4,9,4,1,9] 4 occurs 3 times output=4
  • Ans. 

    Find the highest value that occurs the same number of times within an array.

    • Iterate through the array and count the occurrences of each value.

    • Store the counts in a dictionary or hash map.

    • Find the maximum count and check which value(s) have that count.

    • Return the highest value among those with the maximum count.

  • Answered by AI
  • Q9. Find number of occurrences of a character in string. Provide multiple approaches for the solution and choose the best why? For "string aabcadd output=a3b1c1d2
  • Ans. 

    Count occurrences of a character in a string and output in a specific format.

    • Use a hash table to store the count of each character.

    • Loop through the string and update the count in the hash table.

    • Create the output string using the hash table.

  • Answered by AI
  • Q10. Convert String from Camel case to Snake case
  • Ans. 

    Converts a string from Camel case to Snake case.

    • Loop through the string and check for uppercase letters

    • Insert an underscore before each uppercase letter

    • Convert the string to lowercase

  • Answered by AI
  • Q11. Given a class @Data class Account{String name; String acctBalance;}. Write logic to get Map using Stream API which shows the balance of each person i,e, key will be the name of the account holder and valu...
  • Ans. 

    Logic to get Map using Stream API to show balance of each person

    • Use Stream API to group accounts by name

    • Use map() to get the sum of balances for each group

    • Collect the results into a Map

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Marvelous interview experience. Although it was 7 rounds of process, each interviewer was best at his/her way.
Initial 2 rounds of interview will bring blood out of your veins , later rounds will bring a little pumping.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2022. 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 - Technical 

(2 Questions)

  • Q1. Basic & Advance concepts of .NET & SQL
  • Q2. OOPs basics, Linq, jQuery, Javascript
Round 3 - HR 

(1 Question)

  • Q1. Basic discussion about your previous company & salary negotiation etc.

BNP Paribas Interview FAQs

How many rounds are there in BNP Paribas Software Trainee interview?
BNP Paribas interview process usually has 2 rounds. The most common rounds in the BNP Paribas interview process are Aptitude Test and Technical.

Tell us how to improve this page.

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
 • 597 Interviews
Wells Fargo Interview Questions
3.9
 • 566 Interviews
Citicorp Interview Questions
3.7
 • 566 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
Yes Bank Interview Questions
3.7
 • 428 Interviews
View all

BNP Paribas Software Trainee Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
2.1k salaries
unlock blur

₹3.6 L/yr - ₹14.4 L/yr

Assistant Manager
1.3k salaries
unlock blur

₹5.9 L/yr - ₹24 L/yr

Associate 1
1k salaries
unlock blur

₹2.5 L/yr - ₹9.3 L/yr

Associate
807 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Senior Software Engineer
459 salaries
unlock blur

₹7.5 L/yr - ₹28 L/yr

Explore more salaries
Compare BNP Paribas with

HSBC Group

4.0
Compare

Standard Chartered

3.8
Compare

ICICI Bank

4.0
Compare

HDFC Bank

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