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

Clear (1)

Birlasoft Senior Software Developer Interview Questions, Process, and Tips

Updated 28 Feb 2025

Top Birlasoft Senior Software Developer Interview Questions and Answers

View all 7 questions

Birlasoft Senior Software Developer Interview Experiences

11 interviews found

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

I was interviewed 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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Oops concept and coding
Round 3 - Technical 

(1 Question)

  • Q1. Questions related to projects done

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Freshworks
Q2. Overlapping Intervals Problem Statement You are given the start a ... read more
asked in Freshworks
Q3. Middle of Linked List Problem Statement Given the head node of a ... read more
asked in SAP
Q4. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Freshworks
Q5. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to D365 CRM customisations
Round 2 - Technical 

(1 Question)

  • Q1. Plugins and jQuery
Round 3 - HR 

(1 Question)

  • Q1. Discussion on privious role

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare technical wise, answer should be in real time based.

I applied via Naukri.com and was interviewed in Mar 2022. There were 4 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Some coding questions
Round 3 - Technical 

(1 Question)

  • Q1. Some coding questions
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join Birlasoft. It is worst company. Worst work life balance. They will torture you for work. It is big mistake to join Birlasoft.

Birlasoft interview questions for designations

 Software Developer

 (19)

 Software Developer Trainee

 (1)

 Senior Software Engineer

 (9)

 Senior Java Developer

 (3)

 Senior IOS Developer

 (1)

 Senior Android Developer

 (1)

 Senior Mainframe Developer

 (1)

 Senior Software Engineer 2

 (1)

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

(1 Question)

  • Q1. Related to my domain, windows os related, Patch management, active directory etc
Round 3 - Technical 

(1 Question)

  • Q1. Same questions in depth for second round
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Actually, during my time, there were many job vacancies throughout almost all the IT industries. So it made my task little easier as companies were eager to hire a candidate

Get interview-ready with Top Birlasoft Interview Questions

Senior Software Developer Interview Questions & Answers

user image Priyanka Jagadabi

posted on 11 Feb 2022

Round 1 - Technical 

(2 Questions)

  • Q1. About soa 11g and 12c
  • Q2. Xa and non xa difference
  • Ans. 

    XA is a distributed transaction protocol while non-XA is not.

    • XA is used for distributed transactions that involve multiple resources.

    • Non-XA is used for local transactions that involve a single resource.

    • XA ensures transactional consistency across multiple resources.

    • Non-XA does not provide transactional consistency across multiple resources.

    • XA involves a two-phase commit protocol while non-XA does not.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an good interview experience

Senior Software Developer Jobs at Birlasoft

View all

Interview Questionnaire 

1 Question

  • Q1. Dynamic question and answer depends on how prepared you are

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep growing with your technical knowledge.
I guess that is the best part to crack interview.

I was interviewed before Dec 2020.

Round 1 - Video Call 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round was completely based on Javascript and React.js.

  • Q1. What are closures?
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the function has finished executing.

    • Closures allow functions to access variables from their outer scope

    • They maintain a reference to the variables even after the outer function has finished executing

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI
  • Q2. What is the prototype chain in JavaScript?
  • Ans. 

    Prototype chain in JavaScript is the mechanism by which objects inherit properties and methods from other objects.

    • In JavaScript, each object has a private property which holds a link to another object called its prototype.

    • If a property or method is not found on an object, JavaScript will look for it in the object's prototype, and so on up the chain.

    • This allows for inheritance in JavaScript, where objects can inherit pr

  • Answered by AI
  • Q3. What is the difference between 'slice' and 'splice' in programming?
  • Ans. 

    Slice is a method that extracts a portion of an array without modifying the original array, while splice is a method that adds or removes elements from an array.

    • Slice returns a shallow copy of a portion of an array based on start and end index parameters.

    • Splice can add new elements to an array or remove existing elements by specifying the start index and number of elements to remove.

    • Example: const arr = [1, 2, 3, 4, 5]...

  • Answered by AI
  • Q4. What is the difference between React context and React Redux?
  • Ans. 

    React context is a built-in feature for passing data through the component tree, while React Redux is a library for managing global state in React applications.

    • React context is used for passing data down the component tree without having to pass props manually at every level.

    • React Redux is a library that provides a centralized store for managing global state in a React application.

    • React context is built into React, whi...

  • Answered by AI
  • Q5. What is a state in React and how is it used?
  • Ans. 

    A state in React is a JavaScript object that stores data relevant to a component and can be updated over time.

    • State is initialized in a component's constructor using this.state = {}

    • State can be updated using this.setState() method

    • State changes trigger re-rendering of the component

  • Answered by AI
  • Q6. What are some design patterns in JavaScript and how do they work?
  • Ans. 

    JavaScript design patterns are reusable solutions to common problems in software design.

    • Some common design patterns in JavaScript include Module, Singleton, Observer, Factory, and Prototype.

    • Module pattern helps in creating encapsulated modules with private and public methods.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Observer pattern allows objects to subscribe a...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABirlasoft Ltd. interview preparation:Topics to prepare for the interview - JavaScript, React, System Design, Data Structures, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Oops concepts
  • Q2. Sealed class, Static, Polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - All Programing interview starts same.
Basics, keep your basic clear.
Second round is related to database,Production support,
And some logical related to Sms integration,Email integration.

I applied via Recruitment Consultant and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. I have interviewed for Sr Software Developer(Reactjs). There were 2 rounds. First round was technical totally based on JavaScript and Reactjs. Second round is managerial round in that they ask you about pr...
  • Q2. JavaScript Design Pattern
  • Q3. States,props, and context API

Interview Preparation Tips

Interview preparation tips for other job seekers - Brushup your JavaScript basic concepts like prototype, closure, design patterns javascript, objects, reactjs basic concepts.
Contribute & help others!
anonymous
You can choose to be anonymous

Birlasoft Interview FAQs

How many rounds are there in Birlasoft Senior Software Developer interview?
Birlasoft interview process usually has 2-3 rounds. The most common rounds in the Birlasoft interview process are Technical, Resume Shortlist and HR.
How to prepare for Birlasoft Senior 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 Birlasoft. The most common topics and skills that interviewers at Birlasoft expect are Software Development, Javascript, SQL, Microservices and HTML.
What are the top questions asked in Birlasoft Senior Software Developer interview?

Some of the top questions asked at the Birlasoft Senior Software Developer interview -

  1. Xa and non xa differe...read more
  2. Dynamic question and answer depends on how prepared you ...read more
  3. Related to my domain, windows os related, Patch management, active directory ...read more

Recently Viewed

REVIEWS

Aequs

3.6

(566 reviews)

REVIEWS

ABB

4.1

(2.7k reviews)

JOBS

Systechcorp

255 jobs

JOBS

Amgen

490 jobs

JOBS

Browse jobs

Discover jobs you love

INTERVIEWS

Birlasoft

No Interviews

INTERVIEWS

Ncr Eduservices

No Interviews

INTERVIEWS

Birlasoft

No Interviews

INTERVIEWS

Ncr Eduservices

No Interviews

INTERVIEWS

Ncr Eduservices

10 top interview questions

Tell us how to improve this page.

Birlasoft Senior Software Developer Interview Process

based on 6 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
View more
Birlasoft Senior Software Developer Salary
based on 952 salaries
₹5 L/yr - ₹18.3 L/yr
22% less than the average Senior Software Developer Salary in India
View more details

Birlasoft Senior Software Developer Reviews and Ratings

based on 85 reviews

3.5/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.0

Salary

3.5

Job security

3.2

Company culture

2.6

Promotions

3.1

Work satisfaction

Explore 85 Reviews and Ratings
Sr Software Developer

Chennai

4-8 Yrs

Not Disclosed

Explore more jobs
Software Developer
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Specialist
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Birlasoft with

Accenture

3.8
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Wipro

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