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 for Freshers

Updated 29 Jul 2025
Popular Designations

19 Interview questions

A Technical Specialist was asked 3mo ago
Q. What are optimizers?
Ans. 

Optimizers are algorithms or tools that enhance performance by improving resource allocation and execution efficiency in various systems.

  • Query Optimization: In databases, optimizers determine the most efficient way to execute a query, such as using indexes to speed up data retrieval.

  • Compiler Optimization: Compilers optimize code during the compilation process to improve execution speed and reduce resource usage, l...

View all Technical Specialist interview questions
A Technical Specialist was asked 3mo 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 3mo 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
An Apprentice was asked 12mo ago
Q. Explain var and const with their respective scopes in JavaScript.
Ans. 

var and const are variable declarations in JavaScript with different scopes and behaviors.

  • var is function-scoped or globally scoped, while const is block-scoped.

  • Example of var: function test() { var x = 10; if (true) { var x = 20; } console.log(x); } // Outputs 20

  • Example of const: function test() { const y = 10; if (true) { const y = 20; } console.log(y); } // Outputs 10

  • const must be initialized at the time of dec...

View all Apprentice interview questions
An Intern was asked
Q. Write a C program to generate the Fibonacci sequence.
Ans. 

A C program to generate Fibonacci series

  • Use a loop to calculate Fibonacci numbers

  • Store the numbers in an array

  • Print the Fibonacci series

View all Intern interview questions
An Incident Manager was asked
Q. What drives you to provide value for the customer, and how do you achieve it?
Ans. 

I drive value for customers by prioritizing their needs, providing timely solutions, and ensuring their satisfaction.

  • Understanding customer requirements and expectations

  • Communicating effectively and promptly

  • Taking ownership of issues and following through to resolution

  • Seeking feedback and continuously improving processes

  • Going above and beyond to exceed customer expectations

View all Incident Manager interview questions

Birlasoft HR Interview Questions

4 questions and answers

Q. Introduce yourself.
Q. Are you ready to relocate?
Q. What do you know about this role and company?
A Consultant was asked
Q. What is the difference between .py and .pyc files?
Ans. 

The .py extension is used for Python source code files, while py files can refer to any file with the py extension.

  • The .py extension is commonly used for Python scripts and modules.

  • py files can refer to any file with the py extension, including Python source code files, but also other types of files such as text files or data files.

  • The .py extension is recognized by Python interpreters and can be executed directly...

View all Consultant interview questions
Are these interview questions helpful?
A MIS Executive and Analyst was asked
Q. What is VLOOKUP?
Ans. 

VLOOKUP is an Excel function that searches for a value in the first column of a table and returns a value in the same row from a specified column.

  • Used for searching data in large tables.

  • Syntax: VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]).

  • Example: =VLOOKUP(A2, B2:D10, 3, FALSE) looks for the value in A2 within the range B2:D10 and returns the corresponding value from the 3rd column.

  • The 'range_...

View all MIS Executive and Analyst interview questions
A Software Developer was asked
Q. What are RDDs in PySpark?
Ans. 

RDD stands for Resilient Distributed Datasets in Pyspark, which are fault-tolerant collections of elements that can be processed in parallel.

  • RDDs are the fundamental data structure in Pyspark.

  • They are immutable and can be cached in memory for faster processing.

  • RDDs can be created from Hadoop Distributed File System (HDFS), local file system, or by transforming existing RDDs.

  • Examples of transformations include map,...

View all Software Developer interview questions
A Software Developer was asked
Q. How is Spark different from MapReduce?
Ans. 

Spark is faster than MapReduce due to in-memory processing and DAG execution model.

  • Spark uses in-memory processing while MapReduce uses disk-based processing.

  • Spark has DAG (Directed Acyclic Graph) execution model while MapReduce has Map and Reduce phases.

  • Spark supports real-time processing while MapReduce is batch-oriented.

  • Spark has a higher level of abstraction and supports multiple languages while MapReduce is l...

View all Software Developer interview questions

Birlasoft Interview Experiences for Freshers

33 interviews found

Apprentice Interview Questions & Answers

user image Anonymous

posted on 9 Aug 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Online Aptitude Test on superset consisting 40 questions of Aptitude, Data Structures, basic computer Science fundamentals.

Round 2 - Coding Test 

40 minutes of coding round on Superset consisting 2 basic coding questions.
1. Nth Fibonacci Sequence
2. Palindrome String

Round 3 - HR 

(4 Questions)

  • Q1. Introduce yourself.
  • Q2. Are you ready to relocate?
  • Q3. Why you want to join Birlasoft?
  • Q4. What do you know about this role and company?
Round 4 - Technical 

(6 Questions)

  • Q1. Questions on OOPs, Polymorphism, Inheritance
  • Q2. Questions on basic html, CSS
  • Q3. Promise in Javascript
  • Ans. 

    In JavaScript, a promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() method to handle success and failure cases.

    • Example: const myPromise = new Promise((resolve, reject) => { ... });

  • Answered by AI
  • Q4. Explain Var and const with their respective scopes in javascript
  • Q5. A pattern question on stars
  • Q6. A select query in SQL, triggers, Joins related theory questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics, the interviews are cakewalk.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is React ,Why it is used in modern days apps
  • Ans. 

    React is a JavaScript library for building user interfaces, known for its efficiency and flexibility.

    • React allows for the creation of reusable UI components, making development faster and more efficient.

    • It uses a virtual DOM to improve performance by only updating the necessary parts of the UI.

    • React is popular for single-page applications and dynamic web interfaces.

    • It is widely used in modern web development due to its...

  • Answered by AI
  • Q2. What is props,Virtual Dom
  • Ans. 

    Props are used to pass data from parent to child components in React. Virtual DOM is a lightweight copy of the actual DOM for efficient updates.

    • Props are read-only and cannot be modified by the child component

    • Virtual DOM is a concept in React where changes are first made to a lightweight copy of the actual DOM before being applied to the real DOM

    • Virtual DOM helps in improving performance by minimizing the number of upd...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company for entry level if you are working in Fullstack

Skills evaluated in this interview

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

(1 Question)

  • Q1. Questions regarding basics java, springboot questions.
Round 2 - Technical 

(1 Question)

  • Q1. About project ,and situational based questions
Round 3 - One-on-one 

(1 Question)

  • Q1. It was a technomanagerial round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well you can clear the interview

Consultant Interview Questions & Answers

user image Anonymous

posted on 21 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About leaving existing company
  • Q2. Structure your own answer based analysing current company work opportunity and other if you need it.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic coding ,asked on project

Intern Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2024

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

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

Round 1 - Aptitude Test 

It was quite easy and easy to clear

Round 2 - HR 

(1 Question)

  • Q1. Meeting with hr and asked me about myself and few hr questions
Round 3 - Technical 

(2 Questions)

  • Q1. Basic questions on c
  • Q2. Write a c program on Fibonacci

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 23 Dec 2024

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

(1 Question)

  • Q1. Tell me about yourself.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Interviewer asked me to share screen and consume public rest api in react. Asked about how microservices inter communicate.

Consultant Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2023

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

Numerical Reasoning and Grammatical Questions

Round 3 - Coding Test 

We gets the code its just we have to correct the error in the code and pass the test cases for the code

Round 4 - Group Discussion 

Here they just look for your fluency and speaking skills. Try to speak as much as you can

Round 5 - Technical 

(1 Question)

  • Q1. Here they ask for the skills mentioned in your CV e.g Your college projects basics of sql and python
Round 6 - HR 

(1 Question)

  • Q1. Here they ask for reallocation flexibility.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and Believe in yourself
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2023. 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 tips
Round 2 - HR 

(1 Question)

  • Q1. Introduction ... asking about ourselves
Round 3 - Technical 

(1 Question)

  • Q1. Like what is vlookup
  • Ans. 

    VLOOKUP is a function in Excel used to search for a value in a table and return a corresponding value from another column.

    • VLOOKUP stands for 'Vertical Lookup'.

    • It is commonly used in Excel to search for a value in the leftmost column of a table and return a value in the same row from a specified column.

    • The syntax for VLOOKUP is =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]).

    • Example: =VLOOKUP(A2, B2:D...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Top trending discussions

View All
Interview Hub
6d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Birlasoft?
Ask anonymously on communities.

Birlasoft Interview FAQs

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

Some of the top questions asked at the Birlasoft interview for freshers -

  1. How u have implemented weblogic in your proje...read more
  2. What are the different Cluster Managers available in Spar...read more
  3. What makes you drive the value for customer and how do you achieve...read more
What are the most common questions asked in Birlasoft HR round for freshers?

The most common HR questions asked in Birlasoft interview are for freshers -

  1. Where do you see yourself in 5 yea...read more
  2. What are your strengths and weakness...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

3.9/5

based on 21 interview experiences

Difficulty level

Easy 14%
Moderate 86%

Duration

Less than 2 weeks 47%
2-4 weeks 40%
4-6 weeks 13%
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 3.1k Interviews
Mphasis Interview Questions
3.3
 • 859 Interviews
DXC Technology Interview Questions
3.6
 • 848 Interviews
EXL Service Interview Questions
3.7
 • 815 Interviews
Nagarro Interview Questions
3.9
 • 810 Interviews
NTT Data Interview Questions
3.8
 • 670 Interviews
Publicis Sapient Interview Questions
3.5
 • 651 Interviews
Persistent Systems Interview Questions
3.6
 • 649 Interviews
View all

Birlasoft Reviews and Ratings

based on 3.3k reviews

3.5/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.2

Salary

3.4

Job security

3.4

Company culture

2.7

Promotions

3.3

Work satisfaction

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

₹4 L/yr - ₹12.9 L/yr

Technical Specialist
1.3k salaries
unlock blur

₹13 L/yr - ₹22.5 L/yr

Technical Lead
1.2k salaries
unlock blur

₹17.6 L/yr - ₹30 L/yr

Senior Software Engineer
1.2k salaries
unlock blur

₹11.5 L/yr - ₹20 L/yr

Software Engineer
1k salaries
unlock blur

₹4.7 L/yr - ₹11.6 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