Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Birlasoft Team. If you also belong to the team, you can get access from here

Birlasoft Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Birlasoft Fullstack Java Application Developer Interview Questions and Answers

Updated 26 Feb 2025

Birlasoft Fullstack Java Application Developer Interview Experiences

1 interview found

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. Find duplicate element frequency in an array.
  • Q2. Stream API examples
  • Q3. Dependency Injection in Spring
Round 2 - Technical 

(2 Questions)

  • Q1. About Project and tech stack.
  • Q2. Manager round project discussion and overview of JFD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basically ask on new features of java and coding DS.

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do one microservice communicate with the another microservice?
  • Ans. 

    Microservices can communicate with each other through synchronous HTTP calls, asynchronous messaging, or using a message broker.

    • Synchronous communication: Microservices can communicate directly through HTTP requests, such as REST APIs.

    • Asynchronous communication: Microservices can use messaging protocols like RabbitMQ or Kafka to send and receive messages.

    • Message broker: Microservices can communicate through a message b...

  • Answered by AI
  • Q2. Design patterns in microservices?
  • Ans. 

    Design patterns in microservices help in structuring and organizing code for scalability and maintainability.

    • Use patterns like Service Registry, Circuit Breaker, and Gateway for communication between microservices.

    • Implement patterns like Saga, CQRS, and Event Sourcing for managing data consistency and scalability.

    • Apply patterns like API Gateway, Decomposition, and Database per Service for better separation of concerns

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Sometimes some people are rude, don't take it to heart!!!

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Where are Logic App logs stored?
  • Ans. 

    Logic App logs are stored in Azure Monitor Logs (formerly known as Log Analytics).

    • Logic App logs are stored in Azure Monitor Logs, which is a centralized log storage and analytics service in Azure.

    • Logs can be viewed and analyzed using Azure Monitor Logs queries.

    • Logs can also be integrated with other Azure services for monitoring and alerting purposes.

  • Answered by AI
  • Q2. How to get the 5th top position data in Sql?
  • Ans. 

    Use the OFFSET and FETCH clauses in SQL to get the 5th top position data.

    • Use the ORDER BY clause to sort the data in descending order.

    • Use the OFFSET clause to skip the first 4 rows.

    • Use the FETCH clause to retrieve only the next row after skipping the first 4 rows.

  • Answered by AI
  • Q3. How do you implement custom middleware in .net core?
  • Ans. 

    Custom middleware in .NET Core can be implemented by creating a class that implements the IMiddleware interface and adding it to the application pipeline.

    • Create a class that implements the IMiddleware interface

    • Implement the InvokeAsync method in the middleware class to handle the request processing logic

    • Add the custom middleware to the application pipeline in the Configure method of the Startup class

  • Answered by AI
  • Q4. Explain Authentication & Authorization in asp.net core?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what resources a user can access.

    • Authentication confirms the identity of a user through credentials like username and password.

    • Authorization determines the permissions and access levels of a user based on their authenticated identity.

    • In ASP.NET Core, authentication is handled through middleware like Identity, OAuth, or JWT tokens.

    • Authorizati...

  • Answered by AI
  • Q5. Explain session management in asp.net core?
  • Ans. 

    Session management in ASP.NET Core involves storing and retrieving user-specific data during a user's visit to a website.

    • Session data is stored on the server side by default in ASP.NET Core

    • Session data can be accessed and manipulated using the HttpContext.Session property

    • Session data can be configured to use different storage providers such as in-memory, distributed cache, or SQL Server

    • Session data is typically used to...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NTT Data Dot Net Fullstack Developer interview:
  • Dot Net
  • Azure
  • Angular
Interview preparation tips for other job seekers - Prepare from begginer to expert level on the JD

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Aug 2023.

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 

(4 Questions)

  • Q1. SQL - a table with emp-id, emp-name, manager-id, Need to find the manger name for each emplyee.
  • Q2. FizzBuzz - if number is divisible by 3 print "fizz", if by 5 print "buzz", if by both "fizzbuzz"
  • Ans. 

    A simple program to print 'fizz' for multiples of 3, 'buzz' for multiples of 5, and 'fizzbuzz' for multiples of both.

    • Iterate through numbers from 1 to n.

    • Use modulo operator to check divisibility by 3 and 5.

    • Print 'fizz', 'buzz', or 'fizzbuzz' accordingly.

  • Answered by AI
  • Q3. Is it necessary for classes implementing an interface to implement interface methods?
  • Ans. 

    Yes, classes implementing an interface must implement interface methods.

    • Classes implementing an interface must provide concrete implementations for all methods declared in the interface.

    • Failure to implement all interface methods will result in a compilation error.

    • Interfaces are used to define a contract that implementing classes must adhere to.

  • Answered by AI
  • Q4. Spring basics - annotations
Round 3 - Technical 

(1 Question)

  • Q1. Spring boot basics
Round 4 - HR 

(1 Question)

  • Q1. Talked about my previous companies and salary. Before they conduct the interview I had told them my expectation, while negotiation they denied for providing that and were offering just 10% hike over my cur...

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for this company. It is just waste of time.

Skills evaluated in this interview

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

What are Decorators?
Why to use decorators?
What is generator and itrator why to use generator insted of itrator?

Round 2 - Technical 

(1 Question)

  • Q1. How to read a file using inbuilt function in python?
  • Ans. 

    Use the open() function to read a file in Python.

    • Use the open() function with 'r' mode to open a file for reading.

    • Use the read() method to read the contents of the file.

    • Close the file using the close() method after reading.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Ask 2 sorting techniques

Round 1 - Group Discussion 

1)Driffience between Abstract class &
Interface.
-abstract class
represents property
&
behaviour of an object
whereas
interface
represents
behaviour
of an object.
2)Driffience between equal() vs ==operator.
equal() is
an object class method
whereas
equal() of string class
override
the object class equal().
3)can we use pointer's in Java.
Not explicitly but implicitly we can use pointer's in java.
Dynamic m/m refers with help of pointer's but java does not support the pointer's.
when we r creating an object in java refrence varaible of an object holds the identity that is nothing but an implicit pointer that holds an unique identity of an object.
4)How we can print object ID.
-Object ID printed with help of object class which is a service provider class having 9().
5)what is object class.
-it is a super class of all predefined & userdefined class.
6)Write a prog to get name of main thread in java.
-class A
{
psvm(String args [])
{
s.o.pln(Thread.currentThread().getName());
}
}
7)length vs length()
-length
is
data menmber
of proxy class
whereas
length() is a string class().

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain JVM in ur own language.
  • Ans. 

    JVM is an abstract machine that executes Java bytecode.

    • JVM stands for Java Virtual Machine.

    • It is responsible for interpreting and executing Java bytecode.

    • JVM provides platform independence to Java programs.

    • It has its own memory management system and garbage collector.

    • JVM can be implemented on different operating systems.

    • Examples of JVM languages include Java, Kotlin, and Scala.

  • Answered by AI
  • Q2. Exlplaing Multhreading.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepairing accordingly
for to improve
i) strength,
ii)creativity
&
problem analysis & sloving attitude
with accessing fundamental stratergies of software development.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do one microservice communicate with the another microservice?
  • Ans. 

    Microservices can communicate with each other through synchronous HTTP calls, asynchronous messaging, or using a message broker.

    • Synchronous communication: Microservices can communicate directly through HTTP requests, such as REST APIs.

    • Asynchronous communication: Microservices can use messaging protocols like RabbitMQ or Kafka to send and receive messages.

    • Message broker: Microservices can communicate through a message b...

  • Answered by AI
  • Q2. Design patterns in microservices?
  • Ans. 

    Design patterns in microservices help in structuring and organizing code for scalability and maintainability.

    • Use patterns like Service Registry, Circuit Breaker, and Gateway for communication between microservices.

    • Implement patterns like Saga, CQRS, and Event Sourcing for managing data consistency and scalability.

    • Apply patterns like API Gateway, Decomposition, and Database per Service for better separation of concerns

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Sometimes some people are rude, don't take it to heart!!!

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. It asked basics of Java related to OOPs pillar and DSA questions
  • Q2. DSA linkedlist coding summary etc
Round 2 - HR 

(2 Questions)

  • Q1. How are you now??
  • Q2. Are you good now anymore??

Interview Preparation Tips

Interview preparation tips for other job seekers - study hard and smart

I applied via Naukri.com and was interviewed in Mar 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 

(2 Questions)

  • Q1. Hashmap inter working, arraylist internal working, concurrent hashmap, comprator vs comprable, list, set, queue, transient vs volatile, Serializable, executor framework,
  • Q2. Java 8 features especaily stream
Round 3 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and requirements of the position.

    • I am flexible and open to negotiation.

    • I am looking for a competitive salary based on my skills and experience.

    • I would like to be compensated fairly for the value I can bring to the company.

    • I am interested in discussing the overall compensation package, including benefits and bonuses.

  • Answered by AI
  • Q2. What is your family background?
  • Ans. 

    My family background is diverse and multicultural, with members from different countries and professions.

    • My parents are from different countries, which has exposed me to different cultures and languages.

    • My father is a doctor and my mother is an engineer, which has influenced my interest in both medicine and technology.

    • I have relatives who are teachers, artists, and entrepreneurs, which has broadened my perspective on v...

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    Looking for new challenges and growth opportunities.

    • Seeking a more challenging role to enhance my skills and knowledge.

    • Interested in working with new technologies and frameworks.

    • Want to be part of a dynamic and innovative team.

    • Desire for career growth and advancement.

    • Looking for a better work-life balance.

  • Answered by AI
  • Q4. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a highly skilled Fullstack Java Developer, leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously improving my skills

    • Contributing to the success of the company

  • Answered by AI
  • Q5. Tell me about yourself.
  • Ans. 

    I am a Fullstack Java Developer with experience in developing web applications using Java, Spring, and JavaScript.

    • I have a strong understanding of Java programming language and its frameworks like Spring and Hibernate.

    • I am proficient in front-end technologies like HTML, CSS, and JavaScript.

    • I have experience in developing RESTful APIs and working with databases like MySQL and MongoDB.

    • I am familiar with Agile development...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops basic concept, angular, hibernate and spring framework

Birlasoft Interview FAQs

How many rounds are there in Birlasoft Fullstack Java Application Developer interview?
Birlasoft interview process usually has 2 rounds. The most common rounds in the Birlasoft interview process are Technical.
How to prepare for Birlasoft Fullstack Java Application 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 Birlasoft. The most common topics and skills that interviewers at Birlasoft expect are AEM, Angular, DevOps Tools, Docker and J2EE.
What are the top questions asked in Birlasoft Fullstack Java Application Developer interview?

Some of the top questions asked at the Birlasoft Fullstack Java Application Developer interview -

  1. find duplicate element frequency in an arr...read more
  2. Dependency Injection in Spr...read more
  3. Stream API examp...read more

Tell us how to improve this page.

Birlasoft Fullstack Java Application Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 817 Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Nagarro Interview Questions
4.0
 • 778 Interviews
View all
Software Developer
1.5k salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹5.4 L/yr - ₹20 L/yr

Technical Specialist
1.1k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Technical Lead
1.1k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Software Engineer
1.1k salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Explore more salaries
Compare Birlasoft with

Accenture

3.8
Compare

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Wipro

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