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 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:
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 

(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 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 Android Developer

 (1)

 Senior Mainframe Developer

 (1)

 Senior IOS 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:
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 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. 

    A closure is the result of combining a function with the lexical environment in which it was declared. It is an inner function that has access to the variables of the outer or enclosing function. There are three scope chains in the closure:
    1. Variables are defined between curly brackets in its own scope.
    2. Variables in the outer function
    3. Variables at the global level

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

    Prototype chaining is a technique for creating new items from existing ones. In a class-based language, it's similar to inheritance.
    Object.getPrototypeOf(object) or the proto property can be used to get the prototype of an object instance, whereas Object.prototype can be used to retrieve the prototype of a constructor function.

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

    1. Slice Doesn't modify the original array(immutable) while Splice Modifies the original array(mutable). 
    2. Slice returns the subset of original array while splice returns the deleted elements as array
    3. Slice is used to pick the elements from array. Splice is used to insert or delete elements to/from array

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

    Context may be used directly in your application and is ideal for passing data down to deeply nested components, which is exactly what it was meant for.
    Redux, on the other hand, is far more powerful and has many features that the Context API does not. React Redux also uses context internally, but this isn't disclosed in the public API.

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

    React components are built around states. States serve as a data source and should be made as basic as feasible. In a nutshell, states are the objects that determine how components are rendered and behave. They, unlike the props, are malleable and produce dynamic and interactive elements. This is how you get to them. state().

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

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.

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

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 926 salaries
₹5 L/yr - ₹18.2 L/yr
27% 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

₹2.5 L/yr - ₹11 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹5.4 L/yr - ₹24 L/yr

Technical Lead
1.1k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Technical Specialist
1.1k salaries
unlock blur

₹8 L/yr - ₹30 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