Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Bajaj Finserv Health Team. If you also belong to the team, you can get access from here

Bajaj Finserv Health Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 183 Reviews

Filter interviews by

Bajaj Finserv Health Software Development Engineer Interview Questions and Answers

Updated 9 Jan 2025

Bajaj Finserv Health Software Development Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Coding questions involving array and string manipulation.

Round 2 - Technical 

(2 Questions)

  • Q1. What are closures in javascript?
  • Q2. What is the event loop in javascript?

Software Development Engineer Jobs at Bajaj Finserv Health

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

3 coding questions, medium

Round 2 - Technical 

(2 Questions)

  • Q1. Related to string and prefix sum
  • Q2. How priority queue works and its implementation using min heap
  • Ans. 

    Priority queue is a data structure that stores elements based on their priority, allowing for efficient retrieval of the highest priority element.

    • Priority queue can be implemented using a min heap, where the root node always contains the minimum element.

    • Insertion: Add the new element to the end of the heap and then heapify up to maintain the min heap property.

    • Deletion: Remove the root node (minimum element), move the l...

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Hard Stock sell problem
  • Ans. 

    The hard stock sell problem involves determining the best time to sell stocks to maximize profit.

    • Consider using dynamic programming to solve this problem efficiently.

    • Keep track of the minimum stock price seen so far and calculate the maximum profit that can be made by selling at each day.

    • The final answer will be the maximum profit that can be made by selling at the last day.

  • Answered by AI
  • Q2. Create a server without express
  • Ans. 

    Creating a server without using Express framework

    • Use Node.js built-in 'http' module to create a server

    • Listen for incoming requests on a specific port

    • Handle different routes and methods using 'http' module

  • Answered by AI
  • Q3. What is singleton class, write a usecase through code
  • Ans. 

    Singleton class is a class that can only have one instance created throughout the application.

    • Singleton class restricts the instantiation of a class to one object.

    • It is often used for logging, caching, thread pools, database connections, etc.

    • Example: Java implementation of Singleton class -

    • public class Singleton { private static Singleton instance; private Singleton() {} public static Singleton getInstance() { if(insta...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn node, express basics(basics means covering whole basic groud not touch and go) like about making servers (with or without express) and emitters. Have a good hold of basic DSA till atleast till linked list and few dp questions(easy ones). Have some projects or internships if fresher. If frontend learn react hooks, state management, redux.

This all should do it, chao!! 😄

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Design cab booking system on hacker rank platform

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

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy-Medium level questions

Round 2 - Technical 

(2 Questions)

  • Q1. Design coffee machine
  • Ans. 

    Design a coffee machine with various features and options for customization.

    • Include options for different types of coffee (espresso, latte, cappuccino, etc.)

    • Allow customization of coffee strength and temperature

    • Include a milk frother for making specialty drinks

    • Have a water reservoir and bean grinder for convenience

    • Include a display screen for easy navigation and selection of options

  • Answered by AI
  • Q2. Projects discussion
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2022.

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. Basic dsa question of 2 sum and other questions around HTML and css
Round 3 - Technical 

(1 Question)

  • Q1. Egineering manager round asked about my college projects
Round 1 - Coding Test 

Duration: 1 hour
Platform: Hackerrank
Topics : Standard Interview Problems

Round 2 - Technical 

(1 Question)

  • Q1. SQL based, Puzzle based

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the famous problems and SQL

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Datastructure and algorithms,Linkedlist,arrays,dynamic programming,recursion,design patterns,Trees

Interview Preparation Tips

Interview preparation tips for other job seekers - There will be four technical interviews
1.hackerearth round
2.problem solving round-1
3.problem solving round-2
4.Design round- where you will be asked to design an application with given requirements

Interview Preparation Tips

Round: Resume Shortlist
Experience: Myntra had conducted a coding test on campus before the start of the placement season with 2 questions, one on stack and other on DP. The eligible branches were Computer Science & Engineering, Mathematics & Computing, Electrical Engineering and Electronics & Communication Engineering. I couldn't give the test because my branch was Engineering Physics. However, when they visited campus for interviews on day 2, everyone who had cleared their test was already placed. They looked over some resumes for interviews and decided to interview me, since i had some projects in Machine Learning and Computer Vision.
Tips: For the test, the DP question asked was pretty standard, on Longest Common Subsequence. The question on stacks, i dont remember what it was but it was also pretty straight forward. For the test, i would reommend to solve problem from geeksforgeeks. If they do come to resume shortlisting, they are looking for people who have done good projects and internships.

Round: Interview
Experience: The interview started off with questions on my general interest in Software Development. The first round had two coding questions, i was supposed to write the code on paper. The first question was to add two numbers represented by linked lists - -----/. They gave a specific input and asked me to demonstrate step by step in my code, how it would lead to the correct answer. I dont remember the second question, but it was also an easy one on linked lists.
Tips: It's ok if you can't code a general solution, if you can write a code which works for the particular input they have given then also it's ok with them. But be thorough with Data structures.

Round: Interview
Experience: I wasn't asked to write any code in this interview. They asked me some questions on Machine Learning, because of my projects in them. Then they asked me if i knew graph algorithms. Since i knew BFS and DFS, i told them. They asked the difference between the two. Then they asked me if i knew how to find the shortest distance between two points in a graph. I didn't know Djikstra's properly but i knew it worked on the greedy approach so was able to tell that. Then they asked me how would i find the second shortest path. I tried to answer it with the same greedy approach, but couldn't arrive at the complete solution.
Tips: They ask a tough theoretical question. It's ok if you don't know the answer, they only look for your approach.

Round: Interview
Experience: They asked me to code one question which was on stacks, i don't remember the question, but it was also not difficult, and i wrote the code for that. Then they started to drill me on my resume, on every project that i had done, every miniscule detail.
Tips: Be very thorough with your resume. It's a clear red flag for them if you can't explain something you have written on your resume.

General Tips: Be thorough with Data Structures and Algorithms and also with your resume.
Skill Tips: They generally stick to coding only.
Skills: Coding
College Name: IIT Guwahati
Motivation: Wanted a job in Software Development.
Funny Moments: My third round started pretty late in the night around 11:30 PM. So, had a walking interview in front of the canteen because the interviewer thought i looked tired and should have a cup of coffee.

I was interviewed in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. Questions on specifically on data structures and algorithms and on system design too

Interview Preparation Tips

Interview preparation tips for other job seekers - Include at least one link from any programming platform preferably, Hackerrank. Focus more on problem solving rather than giving contests. At least that worked for me.

Bajaj Finserv Health Interview FAQs

How many rounds are there in Bajaj Finserv Health Software Development Engineer interview?
Bajaj Finserv Health interview process usually has 2 rounds. The most common rounds in the Bajaj Finserv Health interview process are Coding Test and Technical.
How to prepare for Bajaj Finserv Health Software Development Engineer 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 Bajaj Finserv Health. The most common topics and skills that interviewers at Bajaj Finserv Health expect are Java, Java Spring Boot and Microservices.
What are the top questions asked in Bajaj Finserv Health Software Development Engineer interview?

Some of the top questions asked at the Bajaj Finserv Health Software Development Engineer interview -

  1. What is the event loop in javascri...read more
  2. What are closures in javascri...read more

Tell us how to improve this page.

Bajaj Finserv Health Software Development Engineer Salary
based on 54 salaries
₹12 L/yr - ₹18 L/yr
At par with the average Software Development Engineer Salary in India
View more details

Bajaj Finserv Health Software Development Engineer Reviews and Ratings

based on 4 reviews

3.3/5

Rating in categories

3.7

Skill development

2.9

Work-Life balance

2.6

Salary & Benefits

3.7

Job Security

2.7

Company culture

2.6

Promotions/Appraisal

2.7

Work Satisfaction

Explore 4 Reviews and Ratings
Product Manager
111 salaries
unlock blur

₹10 L/yr - ₹25 L/yr

Software Development Engineer
54 salaries
unlock blur

₹12 L/yr - ₹18 L/yr

Relationship Manager
48 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Sales Manager
45 salaries
unlock blur

₹4.5 L/yr - ₹11.4 L/yr

Salesforce Developer
24 salaries
unlock blur

₹10 L/yr - ₹25 L/yr

Explore more salaries
Compare Bajaj Finserv Health with

Star Health & Allied Insurance

3.8
Compare

Niva Bupa Health Insurance Company

3.7
Compare

HDFC Ergo General Insurance

4.0
Compare

ICICI Lombard General Insurance Company

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview