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
3.6

based on 2.8k Reviews

Filter interviews by

Birlasoft Python Developer Interview Questions and Answers

Updated 17 Mar 2022

Birlasoft Python Developer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Feb 2022. There were 2 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 

(7 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Why should we hire you?
  • Q4. Where do you see yourself in 5 years?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.
  • Q7. More about yourself , education background

Interview Preparation Tips

Topics to prepare for Birlasoft Python Developer interview:
  • Python
Interview preparation tips for other job seekers - Take a interview in 2 rounds, laguage hindi & english

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions about python and related to JD
Round 2 - Technical 

(1 Question)

  • Q1. In depth questions based on JD

Interview Preparation Tips

Interview preparation tips for other job seekers - Please read the JD properly and prepare accordingly. Update your resume according to the JD.
The interview process contained 2 technical rounds. I cleared both the rounds and then got a call from HR saying that they want to go ahead with me and asked me for my documents for background verification.
The issue with value labs’ interview process is that after clearing all of your rounds, your profile is then sent to the client and client can reject your profile without even talking to you. The same thing happened to me.

I applied via Approached by Company and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Question about Python OOPs, decorators, generators and data structure
Round 2 - Technical 

(1 Question)

  • Q1. Two coding questions about recursion and pattern printing
Round 3 - HR 

(1 Question)

  • Q1. General discussion about previous work and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain what you have done in your previous company properly

I applied via Recruitment Consultant and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is Shallow copy and deep copy
  • Ans. 

    Shallow copy creates a new object with the same reference as the original, while deep copy creates a new object with a new reference.

    • Shallow copy only copies the top-level object, while deep copy copies all nested objects.

    • Shallow copy can be done using slicing or the copy() method, while deep copy requires the copy module.

    • Modifying the original object will affect the shallow copy, but not the deep copy.

    • Example: x = [[1...

  • Answered by AI
  • Q2. What is ID in Python
  • Ans. 

    ID is a unique identifier assigned to an object in Python.

    • ID is a built-in function in Python that returns a unique integer identifier for an object.

    • The ID of an object remains constant throughout its lifetime.

    • ID can be used to compare objects for identity rather than equality.

    • ID is not guaranteed to be unique across different runs of the program.

  • Answered by AI
  • Q3. What are different data types and it's features
  • Ans. 

    Data types are categories of data items that determine the operations that can be performed on them.

    • Numeric types: int, float, complex

    • Sequence types: list, tuple, range

    • Text type: str

    • Mapping type: dict

    • Set types: set, frozenset

    • Boolean type: bool

    • Binary types: bytes, bytearray, memoryview

  • Answered by AI
  • Q4. Can we change the order for dictionary
  • Ans. 

    Yes, we can change the order of a dictionary in Python.

    • Use OrderedDict to maintain the order of insertion

    • Sort the dictionary based on keys or values

    • Convert the dictionary to a list of tuples and sort them

    • Use the sorted() function to sort the dictionary

  • Answered by AI
  • Q5. Can we change the key of dictionary. What are the criteria to select key of dictionary
  • Ans. 

    Yes, the key of a dictionary in Python can be changed. The criteria for selecting a key are immutability and uniqueness.

    • The key of a dictionary can be any immutable data type such as strings, numbers, or tuples.

    • The key must be unique within the dictionary, as duplicate keys are not allowed.

    • Changing the value of a key is allowed, but changing the key itself requires creating a new key-value pair.

    • Keys that are mutable, s

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study deep as they go deep in to basics

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

The coding test was easy and had a high passing rate.

Round 2 - Aptitude Test 

The emphasis of this test was primarily on web development using python and not traditional python based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Confirm with HR the nature of depp and interview structure in greater detail.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between List and Tuple in python?
  • Ans. 

    List is mutable, Tuple is immutable in Python.

    • List can be modified after creation, Tuple cannot be modified.

    • List uses square brackets [], Tuple uses parentheses ().

    • List is used for collections of items that may need to be changed, Tuple is used for collections of items that should not change.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q2. Get min and max from a list without using function
  • Ans. 

    Find min and max from a list without using function

    • Iterate through the list and compare each element with current min and max values

    • Update min and max values accordingly

  • Answered by AI
  • Q3. Explain iterator, generator and lambdas
  • Ans. 

    Iterators are objects that allow iteration over a sequence, generators are functions that yield values one at a time, and lambdas are anonymous functions.

    • Iterators are objects that implement the iterator protocol, with methods like __iter__() and __next__().

    • Generators are functions that use the yield keyword to return values one at a time, pausing execution between each yield.

    • Lambdas are anonymous functions defined usi...

  • Answered by AI

Skills evaluated in this interview

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

Based on list, then Selenium x path

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

I applied via Naukri.com and was interviewed in May 2023. There were 2 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 

(2 Questions)

  • Q1. She asking Work experience related and expected CTC etc.
  • Q2. Your resume is shortlisted then call back you.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Microservices and monolythic
  • Ans. 

    Microservices are small, independent services that work together, while monolithic is a single, large application.

    • Microservices are loosely coupled, allowing for independent development and deployment.

    • Monolithic applications are tightly integrated, making it harder to scale and maintain.

    • Microservices communicate through APIs, while monolithic applications have all components within the same codebase.

    • Examples of microse...

  • Answered by AI
  • Q2. Basics SQL queries

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to python web framework
  • Q2. Real time python project problem solving questions

Birlasoft Interview FAQs

How many rounds are there in Birlasoft Python Developer interview?
Birlasoft interview process usually has 2 rounds. The most common rounds in the Birlasoft interview process are Resume Shortlist and HR.
How to prepare for Birlasoft Python 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 Python, Django, Flask, AWS and Cloud.

Tell us how to improve this page.

Birlasoft Python Developer Salary
based on 5 salaries
₹4.2 L/yr - ₹9 L/yr
At par with the average Python Developer Salary in India
View more details

Birlasoft Python Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
1.5k salaries
unlock blur

₹2.5 L/yr - ₹10.8 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹5.4 L/yr - ₹20.5 L/yr

Technical Lead
1.1k salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Technical Specialist
1.1k salaries
unlock blur

₹7.9 L/yr - ₹28.3 L/yr

Software Engineer
1.1k salaries
unlock blur

₹2.5 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