Upload Button Icon Add office photos

Filter interviews by

BNPS International Junior Java Developer Interview Questions and Answers

Updated 11 Apr 2024

BNPS International Junior Java Developer Interview Experiences

1 interview found

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

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

Round 1 - Aptitude Test 

Basic aptitude and coding questions in first rounds

Round 2 - Technical 

(3 Questions)

  • Q1. Technical interview 1 Asked questions about core java concepts and basic coding problems.
  • Q2. Prime number program
  • Ans. 

    A prime number program checks if a given number is only divisible by 1 and itself.

    • Check if the number is greater than 1.

    • Iterate from 2 to the square root of the number and check for divisibility.

    • If the number is only divisible by 1 and itself, it is a prime number.

  • Answered by AI
  • Q3. Unique elements in an array
  • Ans. 

    Find unique elements in an array of strings

    • Iterate through the array and use a Set to store unique elements

    • Check if each element is already in the Set before adding it

    • Return the Set of unique elements

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Technical interview 2 Asked questions on logic building and And linked lists
  • Q2. Insertion in single linked list Deletion in single linked list
  • Ans. 

    Insertion and deletion operations in a single linked list.

    • Insertion: Add a new node at the beginning, middle, or end of the list by updating pointers.

    • Deletion: Remove a node by updating pointers to skip over the node to be deleted.

    • Example: Insert a node at the beginning - create a new node, point its next to the current head, and update head to the new node.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

Reverse a given string and find the frequency

Round 2 - Technical 

(2 Questions)

  • Q1. What is optional class?
  • Ans. 

    Optional class is a container object which may or may not contain a non-null value.

    • Optional class was introduced in Java 8 to deal with NullPointerExceptions.

    • It is used to avoid null checks and handle null values more effectively.

    • Methods like isPresent(), ifPresent(), orElse() are commonly used with Optional class.

  • Answered by AI
  • Q2. What is abstract method?
  • Ans. 

    An abstract method is a method that is declared without an implementation in an abstract class or interface.

    • Abstract methods do not have a body and must be implemented by subclasses.

    • Abstract classes can have both abstract and non-abstract methods.

    • Interfaces can only have abstract methods by default.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and honest

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Java full stack qusetions for freshers

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

(2 Questions)

  • Q1. Types of microservices design pattern
  • Ans. 

    Microservices design patterns help in designing and implementing microservices architecture efficiently.

    • Service Registry pattern - uses a central registry to manage service instances

    • Circuit Breaker pattern - prevents cascading failures in distributed systems

    • API Gateway pattern - provides a single entry point for clients to access multiple services

    • Saga pattern - manages long-running transactions across multiple services

    • ...

  • Answered by AI
  • Q2. What is method in java
  • Ans. 

    A method in Java is a block of code that performs a specific task. It is defined within a class and can be called to execute its functionality.

    • Methods are used to perform specific actions in a program.

    • They are defined within a class and can be called to execute their code.

    • Methods can have parameters and return values.

    • Example: public void printMessage(String message) { System.out.println(message); }

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Monster and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding round of amazon

Round 2 - Coding Test 

Coding round amazon eedee efecece e eveve

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about youself
  • Q2. Sxsxsxs sxsxsx sxxsx sx sxsxsx

Interview Preparation Tips

Interview preparation tips for other job seekers - xssc csccdc scsc scsc sc scs cs cc d ce c ec ec ec e ce cde c ccec
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding Assessment was on HakerRank. First Question was typical Java program and second question was SQL

Round 2 - HR 

(1 Question)

  • Q1. 10 min call with HR about salary, gibrid ability and my motiovation to work in ibm
Round 3 - Technical 

(1 Question)

  • Q1. Questions about my CV and projects, one SQL question based on db of my project, and Java question about stream
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. 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 

What is dynamic website

Round 3 - Coding Test 

Backed language in Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Best
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Firstly we should learn aptitude and reasoning basics minimum one month we crack the exam

Round 2 - Coding Test 

We should learn any one coding language java or python in you tube

Interview Preparation Tips

Interview preparation tips for other job seekers - i don't have tips

I applied via Naukri.com and was interviewed in Jul 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. Self introduction , Java releted questions
Round 3 - HR 

(1 Question)

  • Q1. Company related questions and salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work on our company i'm waiting for your response
Round 1 - Technical 

(2 Questions)

  • Q1. What is jdk,jre , thread , collection
  • Ans. 

    jdk is Java Development Kit, jre is Java Runtime Environment, thread is a unit of execution, collection is a group of objects.

    • JDK is a software development kit used to develop Java applications.

    • JRE is a runtime environment used to run Java applications.

    • Thread is a lightweight unit of execution within a process.

    • Collection is a group of objects that can be manipulated as a single unit.

  • Answered by AI
  • Q2. Exception handling, class upcasting,down casting
Round 2 - HR 

(1 Question)

  • Q1. Bsnnsnsj sjsjjssjsj. Hhabab. Hahh

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core java questions for first round , in managerial round prepare project related questions

Skills evaluated in this interview

BNPS International Interview FAQs

How many rounds are there in BNPS International Junior Java Developer interview?
BNPS International interview process usually has 3 rounds. The most common rounds in the BNPS International interview process are Technical and Aptitude Test.
What are the top questions asked in BNPS International Junior Java Developer interview?

Some of the top questions asked at the BNPS International Junior Java Developer interview -

  1. Insertion in single linked list Deletion in single linked l...read more
  2. Unique elements in an ar...read more
  3. Prime number prog...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 BNPS International interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Marketing Manager
4 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Relationship Manager
3 salaries
unlock blur

₹3.6 L/yr - ₹7.2 L/yr

Ielts Trainer
3 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Explore more salaries
Compare BNPS International with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
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