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

Updated 6 Apr 2022

Birlasoft Trainee Developer Interview Experiences

2 interviews found

Trainee Developer Interview Questions & Answers

user image Shivani Mangla

posted on 6 Apr 2022

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Round 1 - Verbal Assessment 

(1 Question)

  • Q1. There was 5-6 rounds in which you have to repeat the sentences and fill in the blanks so that sentence could make a proper meaning and story retelling and many more.
Round 2 - Aptitude Test 
Round 3 - Technical 

(1 Question)

  • Q1. In this round there were some mcqs only.
Round 4 - HR 

(3 Questions)

  • Q1. What is your family background?
  • Q2. Tell me about yourself.
  • Q3. They asked questions related to my college that we hired many students from your college then why you have applied for off campus drive?
  • Ans. Bcz they hired from btech only and I was from MCA batch that was the only reason I am applying for off campus drive.
  • Answered by Shivani Mangla

Interview Preparation Tips

Interview preparation tips for other job seekers - The only advice for the interview is that be confident with your answer and if you don't know something then simply say I am trying to answer and after answering the question say that I will brush up this topic for more clarity.

I applied via campus placement at Sinhgad College of Engineering, Pune and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is the difference between RDBMS and DBMS?
  • Ans. 

    RDBMS is a type of DBMS that stores data in a structured manner using tables with relationships.

    • DBMS is a general term for any software that manages data, while RDBMS is a specific type of DBMS.

    • RDBMS stores data in tables with predefined relationships between them.

    • RDBMS enforces ACID properties (Atomicity, Consistency, Isolation, Durability) to ensure data integrity.

    • Examples of RDBMS include MySQL, Oracle, and SQL Serv...

  • Answered by AI
  • Q2. Asked questions based on the project.(In-depth)
  • Q3. What is logistic regression and the graph of it? (Project was based on the same)
  • Q4. What is Big Data?
  • Ans. 

    Big Data refers to large and complex data sets that cannot be processed using traditional data processing methods.

    • Big Data is characterized by the 3Vs: Volume, Velocity, and Variety.

    • It requires specialized tools and technologies such as Hadoop, Spark, and NoSQL databases.

    • Examples of Big Data include social media data, sensor data, and financial market data.

  • Answered by AI
  • Q5. What is Blockchain?
  • Ans. 

    Blockchain is a decentralized, digital ledger that records transactions in a secure and transparent manner.

    • It is a distributed database that stores information across a network of computers.

    • Each block in the chain contains a cryptographic hash of the previous block, creating an unbreakable chain of data.

    • It is used in cryptocurrencies like Bitcoin and Ethereum, but also has potential applications in industries like fina

  • Answered by AI
  • Q6. SQL query
  • Q7. A situation-based question where I was the manager.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to be calm. I know it's difficult but try to be calm as much as possible. Drink water and get comfortable. You'll give your best.

Skills evaluated in this interview

Trainee Developer Interview Questions Asked at Other Companies

Q1. A. Hang B. Madden C. Kill D. Shoot 7. Choose the proper sequence: ... read more
asked in Birlasoft
Q2. What is the difference between RDBMS and DBMS?
asked in BeeHyv
Q3. Finding probability of a point making an obtuse angle inside a tr ... read more
asked in Coda Global
Q4. A web application in student management
asked in Birlasoft
Q5. What is Blockchain?

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. React hooks, nodejs routing, metadata, aws deployment process, microservices, dom, event loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was for only 30 mins, the interviewer was also not aware that interview is 30 mins only. he said to answer the questions fast, asked questions from front end, backend, database, deployment everything in 30 mins. The interviewer did not seem interested in hearing the answers, he was moving the next question event before i finished speaking. Very bad experience. I answer all the questions well, still received rejection mail with 30 seconds of interview got over. felt like he had pre-decided to reject and was not interested in the interview. The HR was also very rude and did got give detailed feedback when questioned on the reason for rejection.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It's walkin, so they conducted 1 technical mcqs round.

Round 2 - Technical 

(11 Questions)

  • Q1. Multi threading
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap uses an array of buckets to store key-value pairs.

    • Keys are hashed to determine the index in the array where the key-value pair will be stored.

    • In case of hash collisions, a linked list or a balanced tree is used to store multiple key-value pairs in the same bucket.

    • HashMap allows null keys...

  • Answered by AI
  • Q3. Spring batch related
  • Q4. Non repeating characters in a array
  • Ans. 

    Function to find and return all non-repeating characters in an array of strings.

    • Iterate through the array and count the occurrences of each character using a HashMap.

    • Then iterate through the array again and check if the count of each character is 1, if so add it to the result list.

    • Return the list of non-repeating characters.

  • Answered by AI
  • Q5. 3rd highest salary
  • Ans. 

    To find the 3rd highest salary in a database, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query with 'ORDER BY salary DESC' to sort the salaries in descending order.

    • Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and retrieve the third highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q6. Qualifier vs primary
  • Ans. 

    A qualifier in Java is used to specify additional information about a primary, which is the main data type or variable.

    • A primary in Java is the main data type or variable, while a qualifier provides additional information about the primary.

    • Qualifiers can be used to modify the behavior or characteristics of a primary.

    • For example, in Java, 'final' is a qualifier that can be used to make a variable constant.

  • Answered by AI
  • Q7. Controller vs restcontroller
  • Ans. 

    The main difference is that @RestController is a specialized version of @Controller that is used for RESTful web services.

    • Both @Controller and @RestController are used in Spring MVC to handle HTTP requests, but @RestController is specifically used for RESTful web services.

    • @Controller is used to create web pages, while @RestController is used to return data in JSON or XML format.

    • @RestController is a convenience annotati...

  • Answered by AI
  • Q8. Spring boot annotataions
  • Q9. Oops concepts with examples
  • Ans. 

    OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability for objects to be treated as instances of their paren...

  • Answered by AI
  • Q10. Spring batch configuration
  • Q11. They covered all java, spring and Microservices
Round 3 - Technical 

(4 Questions)

  • Q1. Microservices architecture
  • Q2. How do Microservices communicate
  • Ans. 

    Microservices communicate with each other through various communication protocols like HTTP, messaging queues, and gRPC.

    • Microservices can communicate over HTTP using RESTful APIs.

    • Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

    • gRPC is a high-performance, open-source RPC framework that can be used for communication between microservices.

    • Service discovery mechanism...

  • Answered by AI
  • Q3. How to access the Microservice end point
  • Ans. 

    Microservice endpoints can be accessed using HTTP requests with the appropriate URL

    • Use HTTP methods like GET, POST, PUT, DELETE to interact with the microservice

    • Construct the URL with the base URL of the microservice and the specific endpoint path

    • Include any necessary headers or parameters in the request for authentication or data filtering

  • Answered by AI
  • Q4. Why we use microservices
  • Ans. 

    Microservices allow for modular, scalable, and flexible software development by breaking down applications into smaller, independent services.

    • Microservices enable easier maintenance and updates as each service can be developed, deployed, and scaled independently.

    • They improve fault isolation, as failures in one service do not necessarily affect the entire application.

    • Microservices promote agility and faster time-to-mark...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain architecture of your project
  • Q2. Some questions on Java, Spring Boot and sql
Round 2 - Technical 

(2 Questions)

  • Q1. Project flow and some behavioural questions
  • Q2. Project contribution of yours
  • Ans. 

    Developed a web application for tracking employee attendance and performance

    • Implemented user authentication and authorization using Spring Security

    • Utilized Hibernate for database interaction and data persistence

    • Designed and developed RESTful APIs for frontend integration

    • Used AngularJS for frontend development to create interactive user interfaces

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic formalities before offer release

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand your project properly and have your basic of programming very clear
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Admin part and mainly LWC development
  • Q2. Case study on devlopment part
Round 2 - One-on-one 

(1 Question)

  • Q1. Last project details and more technical skills and real-time cases

Java Developer Interview Questions & Answers

ValueLabs user image syed gajini ahmed

posted on 18 Nov 2024

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Spring Security Implementation
  • Q2. Api design Implementation
  • Ans. 

    API design implementation involves creating a well-structured and user-friendly interface for interacting with software applications.

    • Understand the requirements and use cases for the API

    • Design clear and consistent endpoints with proper documentation

    • Implement secure authentication and authorization mechanisms

    • Follow RESTful principles for creating APIs

    • Consider scalability and performance optimizations

  • Answered by AI
  • Q3. Stream API coding question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Can we call future method from batch class
  • Ans. 

    Yes, future methods can be called from a batch class in Salesforce.

    • Future methods can be called from batch classes to perform asynchronous processing.

    • This can be useful for offloading long-running tasks to future methods to avoid hitting governor limits.

    • Example: Calling a future method from a batch class to update records in Salesforce asynchronously.

  • Answered by AI
  • Q2. What's the use of @track decorator. Is it mandatory to explicitly use it? If yes, for which use case?
  • Ans. 

    The @track decorator in Salesforce is used to track changes to a property in a Lightning web component.

    • Used to make a property reactive and trigger re-renders when its value changes

    • Not mandatory but recommended for properties that need to be reactive

    • Use @track when you want changes to a property to be reflected in the UI

  • Answered by AI
  • Q3. When does APEX CPU Limit Exceeded error happens. What's the best practice to avoid getting this error?
  • Ans. 

    APEX CPU Limit Exceeded error happens when code consumes too much CPU time. Best practices include optimizing code, reducing loops, and using asynchronous processing.

    • Avoid using nested loops and optimize code for better performance

    • Use asynchronous processing like @future or Queueable to offload CPU intensive tasks

    • Limit the use of SOQL queries inside loops to reduce CPU consumption

  • Answered by AI
  • Q4. When does Mixed DML Exception occurs?
  • Ans. 

    Mixed DML Exception occurs when DML operations are performed on setup and non-setup objects in a single transaction.

    • Occurs when DML operations are performed on both setup and non-setup objects in a single transaction

    • Setup objects include User, Profile, PermissionSet, etc.

    • Non-setup objects include custom objects, standard objects like Account, Contact, etc.

  • Answered by AI
  • Q5. Debug the following code: var a=10; function abc() { console.log(a); var a=2; } abc();
  • Ans. 

    The code will output 'undefined' because variable 'a' is hoisted within the function.

    • Variable 'a' is hoisted to the top of the function scope, so when 'console.log(a)' is called, 'a' is undefined.

    • To fix this, move the declaration of 'var a=2;' above the 'console.log(a);' statement.

  • Answered by AI
  • Q6. Write a SOQL query to fetch the values of description field from the Account. Why does "the description field cannot be filtered in the query call"?
  • Ans. 

    SOQL query to fetch description field from Account and reason for inability to filter

    • SOQL query: SELECT Description FROM Account

    • Description field is not filterable because it is a long text field

    • Long text fields cannot be filtered in SOQL queries

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Opps concept on spring boot
  • Ans. 

    OOPs concepts in Spring Boot refer to the principles of Object-Oriented Programming applied in the development of Spring Boot applications.

    • Inheritance: Allows classes to inherit attributes and methods from other classes.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Allows objects to be treated as instances of their parent class.

    • Abstraction: Hides the implementation d...

  • Answered by AI
  • Q2. How docker works and kunermates
  • Ans. 

    Docker is a platform for developing, shipping, and running applications in containers. Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications.

    • Docker allows developers to package applications and their dependencies into containers for easy deployment and scalability.

    • Kubernetes helps in automating the deployment, scaling, and management of containerized applic...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quantitative , figure ,mcq question based on tech stack and 2 coding question which are basic. 90 minute time limit.

Round 2 - Technical 

(2 Questions)

  • Q1. Angular question
  • Q2. .net question and sql question

Birlasoft Interview FAQs

How many rounds are there in Birlasoft Trainee Developer interview?
Birlasoft interview process usually has 4 rounds. The most common rounds in the Birlasoft interview process are Technical, HR and Aptitude Test.
What are the top questions asked in Birlasoft Trainee Developer interview?

Some of the top questions asked at the Birlasoft Trainee Developer interview -

  1. What is the difference between RDBMS and DB...read more
  2. What is Blockcha...read more
  3. What is Big Da...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 803 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
View all
Birlasoft Trainee Developer Salary
based on 184 salaries
₹3 L/yr - ₹5.1 L/yr
6% more than the average Trainee Developer Salary in India
View more details

Birlasoft Trainee Developer Reviews and Ratings

based on 10 reviews

2.8/5

Rating in categories

2.5

Skill development

3.1

Work-life balance

2.7

Salary

3.2

Job security

3.1

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 10 Reviews and Ratings
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 - ₹33.8 L/yr

Software Engineer
1.1k salaries
unlock blur

₹2.5 L/yr - ₹10.5 L/yr

Technical Specialist
1.1k salaries
unlock blur

₹8 L/yr - ₹28.3 L/yr

Explore more salaries
Compare Birlasoft with

Accenture

3.9
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Wipro

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