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 Interview Questions and Answers

Updated 3 Jul 2025
Popular Designations

197 Interview questions

A HR Supervisor was asked 1mo ago
Q. How do you handle your work?
Ans. 

Effective work handling involves prioritization, organization, communication, and adaptability to achieve goals efficiently.

  • Prioritize tasks using a matrix to distinguish between urgent and important, ensuring critical tasks are addressed first.

  • Organize your workspace and digital files to minimize distractions and streamline access to necessary resources.

  • Communicate regularly with team members to align on goals, s...

View all HR Supervisor interview questions
A HR Supervisor was asked 1mo ago
Q. How do you mingle with others?
Ans. 

Mingling with others involves effective communication, active listening, and finding common interests to build rapport.

  • Initiate conversations by asking open-ended questions, like 'What do you enjoy doing in your free time?'

  • Use body language to show engagement, such as maintaining eye contact and nodding while others speak.

  • Find common ground by discussing shared experiences or interests, like favorite books or hobb...

View all HR Supervisor interview questions
A Senior Software Engineer was asked 1mo ago
Q. How do RESTful APIs work?
Ans. 

RESTful APIs enable communication between clients and servers using standard HTTP methods, promoting stateless interactions.

  • Stateless Communication: Each request from a client contains all the information needed to process it, allowing servers to treat each request independently.

  • HTTP Methods: RESTful APIs use standard HTTP methods like GET (retrieve data), POST (create data), PUT (update data), and DELETE (remove ...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 1mo ago
Q. What is the difference between Choreography and Orchestration?
Ans. 

Choreography and orchestration are two approaches to managing interactions in distributed systems, each with distinct characteristics.

  • Choreography: In this approach, each service knows how to interact with others, promoting decentralized control. For example, in a microservices architecture, a payment service might directly communicate with an inventory service to update stock levels.

  • Orchestration: This involves a...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 1mo ago
Q. What are the different microservice design patterns you’ve worked with?
Ans. 

Microservices design patterns enhance scalability, maintainability, and deployment flexibility in distributed systems.

  • API Gateway Pattern: Acts as a single entry point for clients, routing requests to appropriate microservices. Example: Netflix uses an API Gateway to manage requests.

  • Service Discovery Pattern: Enables microservices to find each other dynamically. Example: Consul or Eureka can be used for service re...

View all Senior Software Engineer interview questions
A Trainee Developer was asked 1mo ago
Q. What is the difference between a list and a stack?
Ans. 

A list is a collection of items, while a stack is a data structure that follows Last In First Out (LIFO) principle.

  • Order of Access: In a list, elements can be accessed in any order, while in a stack, elements are accessed in reverse order of their addition.

  • Operations: Lists support various operations like insertion, deletion, and traversal, whereas stacks primarily support push (add) and pop (remove) operations.

  • Us...

View all Trainee Developer interview questions
A Senior Java Developer was asked 2mo ago
Q. What is your name?
Ans. 

My name is [Your Name], a passionate Senior Java Developer with extensive experience in building robust applications and leading teams.

  • I have over 8 years of experience in Java development.

  • I specialize in Spring and Hibernate frameworks.

  • I have led multiple projects from conception to deployment.

  • I am proficient in RESTful API design and microservices architecture.

View all Senior Java Developer interview questions
Are these interview questions helpful?
A Technical Specialist was asked 2mo ago
Q. What is an activation function?
Ans. 

An activation function determines the output of a neural network node, introducing non-linearity to the model.

  • Purpose: Activation functions help neural networks learn complex patterns by introducing non-linearities.

  • Types: Common activation functions include Sigmoid, ReLU (Rectified Linear Unit), and Tanh.

  • Sigmoid: Outputs values between 0 and 1, useful for binary classification problems.

  • ReLU: Outputs the input dire...

View all Technical Specialist interview questions
A Technical Specialist was asked 2mo ago
Q. Explain TF-IDF in embedding.
Ans. 

TF-IDF is a statistical measure used to evaluate the importance of a word in a document relative to a collection of documents.

  • Term Frequency (TF): Measures how frequently a term appears in a document. For example, if 'data' appears 5 times in a document of 100 words, TF = 5/100 = 0.05.

  • Inverse Document Frequency (IDF): Measures how important a term is across a collection of documents. If 'data' appears in 10 out of...

View all Technical Specialist interview questions
A Cloud and infra engineer was asked 3mo ago
Q. What are the different types of operating systems?
Ans. 

Operating systems can be categorized into various types based on their architecture and usage.

  • 1. Desktop Operating Systems: Examples include Windows, macOS, and Linux distributions.

  • 2. Server Operating Systems: Examples include Windows Server, Ubuntu Server, and Red Hat Enterprise Linux.

  • 3. Mobile Operating Systems: Examples include Android and iOS.

  • 4. Embedded Operating Systems: Examples include RTOS (Real-Time Oper...

Birlasoft Interview Experiences

303 interviews found

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

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. What is the difference between list and stack
  • Ans. 

    A list is a collection of items, while a stack is a data structure that follows Last In First Out (LIFO) principle.

    • Order of Access: In a list, elements can be accessed in any order, while in a stack, elements are accessed in reverse order of their addition.

    • Operations: Lists support various operations like insertion, deletion, and traversal, whereas stacks primarily support push (add) and pop (remove) operations.

    • Use Cas...

  • Answered by AI
  • Q2. Tell me about your project
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. Find duplicate element frequency in an array.
  • Ans. 

    Find duplicate element frequency in an array of strings.

    • Create a HashMap to store each element and its frequency.

    • Iterate through the array and update the frequency in the HashMap.

    • Print out elements with frequency greater than 1.

  • Answered by AI
  • Q2. Stream API examples
  • Ans. 

    Stream API in Java provides a way to process collections of objects in a functional style.

    • Stream API allows for easy manipulation of collections using functional programming concepts like map, filter, and reduce.

    • Example: List<String> names = Arrays.asList("Alice", "Bob", "Charlie"); Stream<String> stream = names.stream();

    • Example: List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5); int sum = numbers....

  • Answered by AI
  • Q3. Dependency Injection in Spring
  • Ans. 

    Dependency Injection in Spring is a design pattern where objects are provided with their dependencies rather than creating them.

    • In Spring, Dependency Injection is achieved through either constructor injection or setter injection.

    • It helps in achieving loose coupling between classes and makes the code more maintainable and testable.

    • Example: @Autowired annotation in Spring is used for dependency injection.

  • Answered by AI
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.

Apprentice Interview Questions & Answers

user image Anonymous

posted on 24 Dec 2024

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

Online MCQ test of dbms c java oops and aptitude

Round 2 - HR 

(1 Question)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in business administration and a passion for marketing.

    • Recent graduate with a degree in business administration

    • Passionate about marketing

    • Strong communication and organizational skills

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in business administration and a passion for marketing and sales.

    • Recent graduate with a degree in business administration

    • Passionate about marketing and sales

    • Strong communication and interpersonal skills

    • Experience in customer service and retail sales

  • Answered by AI
  • Q2. Tell me about your project which you have done in final year
  • Ans. 

    Developed a mobile application for tracking daily water intake and hydration levels

    • Researched the importance of hydration for overall health

    • Designed user-friendly interface for inputting water intake

    • Implemented reminders and notifications to encourage regular hydration

    • Conducted user testing to gather feedback for improvements

  • Answered by AI
  • Q3. What is inheritance explain its type
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Inheritance allows for code reusability and promotes the concept of hierarchy in programming.

    • There are different types of inheritance such as single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Example: A 'Car' class can inherit attributes and methods fro...

  • Answered by AI
  • Q4. SQL query related questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Technical introduction like explain last project.
  • Ans. 

    Developed a cloud-based inventory management system to streamline operations and improve data accuracy for a retail client.

    • Utilized AWS services for hosting and data storage, ensuring scalability and reliability.

    • Implemented a user-friendly interface using React, enhancing user experience and engagement.

    • Integrated real-time analytics to track inventory levels, reducing stockouts by 30%.

    • Collaborated with cross-functional...

  • Answered by AI
  • Q2. Basic Oracle Apex like Interactive report, Authentication, Dynamic Action, what Apex version you have worked.
  • Q3. What new features are introduced in Apex latest version.
  • Ans. 

    Apex latest version introduces new features like Lightning Web Components, Apex Recipes, and improved debugging capabilities.

    • Lightning Web Components allow developers to build reusable components using modern web standards like JavaScript and HTML.

    • Apex Recipes provide pre-built code snippets for common use cases, making development faster and easier.

    • Improved debugging capabilities include enhanced error messages and be...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. How to handle performance issue in Oracle Apex.
  • Ans. 

    Performance issues in Oracle Apex can be handled by optimizing SQL queries, reducing network latency, and caching data.

    • Optimize SQL queries by using indexes, reducing unnecessary joins, and avoiding full table scans.

    • Reduce network latency by minimizing the number of round trips between the client and server.

    • Cache data to reduce the need for repeated database queries and improve response times.

  • Answered by AI
  • Q2. About apex collection.
  • Q3. About apex liberary
  • Q4. Difference between Server side condition, client side condition
  • Ans. 

    Server side condition is evaluated on the server before the page is sent to the client, while client side condition is evaluated on the client side after the page is received.

    • Server side condition is processed on the server before the page is rendered to the client

    • Client side condition is processed on the client's browser after the page is received

    • Server side conditions are typically used for security and data validati...

  • Answered by AI
  • Q5. What is Authorization and Authentication.
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what actions they are allowed to perform.

    • Authentication confirms the identity of a user through credentials like passwords or biometrics.

    • Authorization determines the level of access a user has to resources or actions.

    • Examples: Logging into a system with a username and password is authentication. Being able to view/edit specific files based o...

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Expected salary
  • Ans. 

    My expected salary is negotiable and dependent on the overall compensation package offered.

    • My expected salary is based on my experience, skills, and the responsibilities of the role.

    • I am open to discussing the salary range during the interview process.

    • I am looking for a competitive salary that reflects my qualifications and contributions to the company.

  • Answered by AI
  • Q2. Preferred location
  • Ans. 

    I am open to relocation for the right opportunity.

    • Open to various locations based on job requirements

    • Prefer locations with good work-life balance

    • Interested in exploring new cities or countries for work

  • Answered by AI
  • Q3. How early you can join
  • Ans. 

    I can join within 2 weeks of receiving a job offer.

    • I can start within 2 weeks of receiving a job offer

    • My current notice period is 2 weeks

    • I am available to start immediately

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's not very hard to crack Oracle Apex developer position if you are good in Sql and plsql.
You can prepare mostly Apex questions from Google itself. Try to go through general questions available on Google.

Skills evaluated in this interview

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Can you tell me about yourself?
  • Q2. What is the best project you have worked on in your entire career?

Software Developer Interview Questions & Answers

user image Kwaab Ki duniya

posted on 7 Nov 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain sldc architecture
  • Ans. 

    SDLC architecture stands for Software Development Life Cycle architecture, which is a process used in software development to design, develop, and test software applications.

    • SDLC architecture involves planning, designing, coding, testing, and deploying software applications.

    • It helps in ensuring that the software development process is organized and efficient.

    • Common SDLC models include Waterfall, Agile, and DevOps.

    • Each ...

  • Answered by AI
  • Q2. Explain DBMS and its needs
  • Ans. 

    DBMS stands for Database Management System, it is a software that manages databases and allows users to interact with them.

    • DBMS is used to create, retrieve, update, and manage data in databases.

    • It provides a way to store and organize data efficiently.

    • DBMS ensures data integrity, security, and consistency.

    • Examples of DBMS include MySQL, Oracle, SQL Server, and PostgreSQL.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a JDE Functional Consultant with 5 years of experience in implementing and supporting JD Edwards ERP systems.

    • 5 years of experience in implementing and supporting JD Edwards ERP systems

    • Strong knowledge of JDE modules such as Finance, Distribution, and Manufacturing

    • Experience in gathering business requirements and translating them into functional specifications

    • Skilled in conducting user training and providing post-i...

  • Answered by AI
  • Q2. What is your role in current organisation?
  • Ans. 

    I am responsible for implementing and supporting JDE applications in my current organization.

    • Implementing and configuring JDE applications based on business requirements

    • Providing support and troubleshooting for JDE users

    • Collaborating with business stakeholders to gather requirements and design solutions

    • Training end users on JDE functionality and best practices

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be honest with your answer.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Life cycle hooks in Angular
  • Ans. 

    Life cycle hooks in Angular are methods that allow you to tap into the lifecycle of a component or directive.

    • ngOnChanges - called when an input property changes

    • ngOnInit - called once when the component is initialized

    • ngDoCheck - called during every change detection run

    • ngAfterContentInit - called after content (ng-content) has been projected into the component

    • ngAfterContentChecked - called after every check of the projec...

  • Answered by AI
  • Q2. Explain Interception in Angular
  • Ans. 

    Interception in Angular allows you to intercept and modify HTTP requests and responses.

    • Interceptors are services that can be used to intercept HTTP requests and responses

    • They can be used to add headers, modify requests, handle errors, etc.

    • Example: Adding an authorization token to every outgoing request

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain your previous project.
  • Q2. Some question from cicd
Round 3 - HR 

(1 Question)

  • Q1. How soon you can join
  • Ans. 

    I can join immediately, but I am flexible to accommodate your timeline for a smooth transition.

    • I am currently available and can start right away if needed.

    • If you require a notice period, I can negotiate with my current employer.

    • I understand the importance of a smooth transition and can assist in training my replacement if necessary.

    • I am open to discussing a start date that works best for your team.

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Aug 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Basic.net core question answer
  • Q2. SQL server question answer
Round 2 - Technical 

(2 Questions)

  • Q1. Angular basic question answer
  • Q2. Entity framework question answer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Triggers, Lwc Basic question
  • Q2. Security model question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not trust this company and resign at your organization, they might not on board you even after sending out Offer letter, always have backup option while interviewinng here.

HR Supervisor Interview Questions & Answers

user image Anonymous

posted on 12 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. How to handle with team
  • Ans. 

    Effective team handling involves communication, support, and conflict resolution to foster a positive work environment.

    • Establish clear communication channels: Regular team meetings can help ensure everyone is on the same page.

    • Encourage collaboration: Use team-building activities to strengthen relationships and improve teamwork.

    • Provide support and resources: Ensure team members have the tools they need to succeed, such ...

  • Answered by AI
  • Q2. How to handle with HR
  • Ans. 

    Effective HR handling involves clear communication, understanding policies, and fostering a positive workplace culture.

    • Establish open communication channels: Regular check-ins can help address concerns early.

    • Understand HR policies: Familiarize yourself with company policies to ensure compliance and fairness.

    • Foster a positive workplace culture: Encourage teamwork and recognition to boost morale.

    • Handle conflicts professi...

  • Answered by AI
  • Q3. How to mingle with others
  • Ans. 

    Mingling with others involves effective communication, active listening, and finding common interests to build rapport.

    • Initiate conversations by asking open-ended questions, like 'What do you enjoy doing in your free time?'

    • Use body language to show engagement, such as maintaining eye contact and nodding while others speak.

    • Find common ground by discussing shared experiences or interests, like favorite books or hobbies.

    • A...

  • Answered by AI
  • Q4. How to handle work
  • Ans. 

    Effective work handling involves prioritization, organization, communication, and adaptability to achieve goals efficiently.

    • Prioritize tasks using a matrix to distinguish between urgent and important, ensuring critical tasks are addressed first.

    • Organize your workspace and digital files to minimize distractions and streamline access to necessary resources.

    • Communicate regularly with team members to align on goals, share ...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Birlasoft?
Ask anonymously on communities.

Birlasoft Interview FAQs

How many rounds are there in Birlasoft interview?
Birlasoft interview process usually has 2-3 rounds. The most common rounds in the Birlasoft interview process are Technical, HR and Resume Shortlist.
How to prepare for Birlasoft 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 SQL, Troubleshooting, Javascript, Oracle and Python.
What are the top questions asked in Birlasoft interview?

Some of the top questions asked at the Birlasoft interview -

  1. According to you, which is the most difficult part of Project Management? Stak...read more
  2. Write a program given String s="rao2022"; Integer int=22,Add two numbers and pr...read more
  3. What is agile? How you trained your team for agile development? What action ite...read more
What are the most common questions asked in Birlasoft HR round?

The most common HR questions asked in Birlasoft interview are -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. Why are you looking for a chan...read more
How long is the Birlasoft interview process?

The duration of Birlasoft interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 266 interview experiences

Difficulty level

Easy 12%
Moderate 80%
Hard 8%

Duration

Less than 2 weeks 73%
2-4 weeks 23%
4-6 weeks 3%
6-8 weeks 2%
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 3k Interviews
Mphasis Interview Questions
3.3
 • 847 Interviews
DXC Technology Interview Questions
3.7
 • 839 Interviews
EXL Service Interview Questions
3.7
 • 805 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 660 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
View all

Birlasoft Reviews and Ratings

based on 3.2k reviews

3.6/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.2

Salary

3.5

Job security

3.4

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 3.2k Reviews and Ratings
Software Developer
1.5k salaries
unlock blur

₹3.9 L/yr - ₹11 L/yr

Technical Specialist
1.4k salaries
unlock blur

₹13.1 L/yr - ₹24 L/yr

Technical Lead
1.2k salaries
unlock blur

₹17.4 L/yr - ₹32 L/yr

Senior Software Engineer
1.2k salaries
unlock blur

₹10.8 L/yr - ₹19 L/yr

Software Engineer
1.1k salaries
unlock blur

₹4.6 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Birlasoft with

Accenture

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Wipro

3.7
Compare
write
Share an Interview