Upload Button Icon Add office photos
Engaged Employer

i

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

Bajaj Finserv Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Clear (1)

Bajaj Finserv Software Developer Interview Questions, Process, and Tips

Updated 28 Aug 2024

Top Bajaj Finserv Software Developer Interview Questions and Answers

  • Q1. Alien Dictionary Problem Statement You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of th ...read more
  • Q2. Flood Fill Algorithm Task Assist Ninja in altering the color of a specific region in his photo. Given the image as a 2D array where each pixel is a positive integer, upd ...read more
  • Q3. The Skyline Problem Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed ...read more
View all 7 questions

Bajaj Finserv Software Developer Interview Experiences

7 interviews found

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

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

Round 1 - Aptitude Test 

Calaender based questions

I applied via Campus Placement and was interviewed in Mar 2022. There were 4 interview rounds.

Round 1 - Coding Test 

First round was an API challenge in which we need to submit our names Reg No. and other details by using an API provided by the company .

Round 2 - Coding Test 

Then the second round was coding round in which there were 19 coding multiple choice questions and 2 coding questions based on the profile we applied for . It was 1 hour and 15 mins long test

Round 3 - Technical 

(1 Question)

  • Q1. The interviewer asked me to intruduce myself and explain the projects on my profile . Then he asked me to few basic questions about Javascript and few coding questions and asked me write psuedo code for th...
Round 4 - HR 

(1 Question)

  • Q1. Hr Asked me to intruduce myself and asked me to tell 5 things that arent on my resume , Then she further asked me if i am willing to relocate .She asked me if i am okay with working on diffrent domains if...

Interview Preparation Tips

Interview preparation tips for other job seekers - For Bajaj finserv Basic Api knowledge and data structures and algorithm is enough . And make sure to go through your Resume projects you have mentioned

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Coding Test 

This round consisted of multiple choice questions based on angular and java. I was asked to design a 3X3 grid that should listen to the click event and the selected grid should change the color to green.

Round 2 - Technical 

(2 Questions)

  • Q1. Longest common subsequence of two string
  • Ans. 

    The longest common subsequence of two strings is the longest sequence of characters that appear in the same order in both strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of the longest common subsequences.

    • Iterate through the characters of both strings and update the array based on the matching characters.

    • Trace back the array to find the longest common subsequence

  • Answered by AI
  • Q2. Logical questions, questions about my project
Round 3 - HR 

(1 Question)

  • Q1. Why this company, will you be able to relocate to given city

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium Interview and had positive experience

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics are more important with good communication skills

Bajaj Finserv interview questions for designations

 Junior Software Developer

 (1)

 Full Stack Software Developer

 (1)

 Software Engineer

 (7)

 Software Tester

 (1)

 Angular Developer

 (2)

 SQL Developer

 (2)

 Salesforce Developer

 (2)

 Sfdc Developer

 (1)

Software Developer Interview Questions & Answers

user image sarvesh pitrubhakta

posted on 17 Jul 2022

Round 1 - Technical 

(1 Question)

  • Q1. Basics of SQL Basics CMD commands SQL query

Interview Preparation Tips

Interview preparation tips for other job seekers - This is a great company .read the basics of programming language.

Get interview-ready with Top Bajaj Finserv Interview Questions

I was interviewed in Feb 2021.

Round 1 - Coding Test 

Round duration - 120 minutes
Round difficulty - Medium

Round 2 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions ('U', 'D', 'L', 'R') from each cell.

    • Return the list of valid paths sorted in alphabetical order.

  • Answered by AI
  • Q2. 

    Word Presence in Sentence

    Determine if a given word 'W' is present in the sentence 'S' as a complete word. The word should not merely be a substring of another word.

    Input:

    The first line contains an in...
  • Ans. 

    Check if a given word is present in a sentence as a complete word.

    • Split the sentence into words using spaces as delimiter.

    • Check if the given word matches any of the words in the sentence.

    • Ensure the word is not a substring of another word in the sentence.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaBajaj Finserv Ltd. interview preparation:Topics to prepare for the interview - Data Structure, OOPS, Algorithms, JavaScript, Html , CssTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Knowledge of api
Tip 2 : Practice Data Structure based questions.
Tip 3 : Do at least 1 project.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not mention participation certificates.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Dec 2020.

Round 1 - Technical 
Round 2 - Assignment 
Round 3 - Personal Interview 

(4 Questions)

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Q2. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Q3. 

    Reverse Words In A String Problem Statement

    Given a string of length N, reverse the string word by word. Ensure that the output reversed string has a single space between two words and does not contain le...

  • Q4. 

    Flood Fill Algorithm Task

    Assist Ninja in altering the color of a specific region in his photo. Given the image as a 2D array where each pixel is a positive integer, update the color of a specified pixel ...

Interview Preparation Tips

Professional and academic backgroundI completed Civil Engineering from Indian Institute of Technology Kanpur. I applied for the job as SDE - 1 in PuneEligibility criteria7 cgpa
Bajaj Finserv Ltd. interview Rounds:Round 1
Round type - Online Coding Interview
Round duration - 90 mintues
Round difficulty - Medium
Round description -

Silent environment


Round 2
Round type - Face to Face
Round duration - 50 minutes
Round difficulty - Medium
Round description -

Evening
One on one interview
Interviewer was friendly by nature

Bajaj Finserv Ltd. interview preparation:Topics to prepare for the interview - Data structures, Sorting, Recursion, Pointers, OOPS, Algorithms, Greedy algorithms, Dynamic ProgrammingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Be well versed with all the coding projects on your resume.
Tip 2 : Practice questions on the above mentioned topics from popular coding websites, like geegsforgeeks, interviewbit, etc, whichever suits you.
Tip 3 : Be familiar with the job profile you are applying for, go through the requirements of that profile and focus more on the skills it requires.
Tip 4 : Some courses like data structures and algorithms, if done, would be given more preference by interviewer over other candidates.

Application resume tips for other job seekers

Tip 1 : Mention high points during your life till now relevant to job profile.
Tip 2 : Mention internships, job experience, academics projects, coding projects precisely relevant to job profile.
Tip 3 : Review you resume by as many people as you can.
Tip 4 : Follow a proper syntax while preparing your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between multi tasking, multi processing and multi programming operating systems with examples ?
  • Ans. 

    Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.

    • Multi tasking allows multiple tasks to run concurrently on a single processor.

    • Multi processing involves multiple processors running tasks simultaneously.

    • Multi programming allows multiple programs to be loaded into memory and executed concurrently.

    • Examples of multi tasking operating systems include Wi...

  • Answered by AI
  • Q2. Tell me about memory allocation (stack vs. heap)?
  • Ans. 

    Memory allocation refers to the process of assigning memory to programs during runtime.

    • Stack allocation is done automatically and is limited in size.

    • Heap allocation is done manually and is larger in size.

    • Stack memory is used for local variables and function calls.

    • Heap memory is used for dynamic memory allocation.

    • Memory leaks can occur if heap memory is not properly managed.

  • Answered by AI
  • Q3. You have two threads one printing even numbers in order and other odd numbers. Design an algorithm so that it prints numbers in natural order?
  • Ans. 

    Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.

    • Create two threads, one for printing even numbers and the other for printing odd numbers.

    • Use a shared variable to keep track of the current number to be printed.

    • Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.

    • Each thread should check if it is i...

  • Answered by AI
  • Q4. Print a matrix in spiral order?
  • Ans. 

    Printing a matrix in spiral order

    • Start from the first element and print it

    • Move in a spiral order towards the center of the matrix

    • Repeat until all elements are printed

  • Answered by AI
  • Q5. Thread class and Runnable Interface?
  • Ans. 

    Thread class and Runnable Interface are used for multithreading in Java.

    • Thread class is a predefined class in Java that provides methods to create and control threads.

    • Runnable interface is used to define a task that can be executed by a thread.

    • Thread class implements Runnable interface.

    • Thread class provides more control over threads than Runnable interface.

    • Example: Thread t = new Thread(new MyRunnable()); t.start();

    • Exa...

  • Answered by AI
  • Q6. What’s the difference between a Linked List and an ArrayList and give me an example of when to use which?
  • Ans. 

    Linked List is a dynamic data structure while ArrayList is a static data structure.

    • Linked List is best for frequent insertion and deletion operations.

    • ArrayList is best for frequent access operations.

    • Linked List uses more memory than ArrayList.

    • ArrayList is faster than Linked List for accessing elements.

    • Use Linked List when you need to frequently add or remove elements from the list.

    • Use ArrayList when you need to frequen

  • Answered by AI
  • Q7. Questions of OS concepts?
  • Q8. A role play scenario was given. With a clear instruction on I don’t need to know the basis and the hypothetical assumption was presented. I was told that I was expected to respond to the given scenario, in...
  • Q9. Why are you interested in a career in investment banking?
  • Ans. 

    I am not interested in a career in investment banking.

    • I am more interested in a career in software development

    • I enjoy problem-solving and creating innovative solutions through coding

    • Investment banking does not align with my passion and skill set

  • Answered by AI
  • Q10. Why have you chosen to apply to J.P. Morgan?
  • Ans. 

    I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.

    • J.P. Morgan has a strong reputation in the financial industry.

    • They have a global presence with offices in multiple countries.

    • The company offers various opportunities for career growth and development.

    • J.P. Morgan is known for its innovative technology solutions in the financial sector.

    • I am impressed by their ...

  • Answered by AI
  • Q11. Have you ever made a mistake? Tell us about it?
  • Ans. 

    Yes, I have made a mistake in my previous project.

    • I underestimated the complexity of a task and ended up missing the deadline.

    • I failed to properly test a feature, resulting in a bug that affected user experience.

    • I accidentally deleted an important file without having a backup.

    • I misunderstood a requirement and implemented a feature incorrectly.

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 1

General Tips: Interview Process: Aptitude test, followed by 3 rounds of interview. Interview process was very good. Just be positive to clear the interview.
Check this link before appearing for interview with JP Morgan. It will help  -----
Skills: Algorithm, Data structure, Stack
College Name: Na

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. 1)Project related,
  • Q2. What is the Polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Answered by AI
  • Q3. What is RestController?
  • Ans. 

    RestController is a class in Spring framework used to handle HTTP requests and return responses as JSON or XML.

    • Handles HTTP requests in Spring framework

    • Returns responses as JSON or XML

    • Annotate a class with @RestController to define it as a RestController

    • Example: @RestController public class UserController {}

  • Answered by AI
Round 2 - Coding Test 

Find the number of occurrences of each element in the given ArrayList

Round 3 - HR 

(1 Question)

  • Q1. Discussion with hr like reason to switch.

Interview Preparation Tips

Interview preparation tips for other job seekers - be good with basics

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Bajaj Finserv Interview FAQs

How many rounds are there in Bajaj Finserv Software Developer interview?
Bajaj Finserv interview process usually has 2 rounds. The most common rounds in the Bajaj Finserv interview process are Technical, Coding Test and HR.
What are the top questions asked in Bajaj Finserv Software Developer interview?

Some of the top questions asked at the Bajaj Finserv Software Developer interview -

  1. longest common subsequence of two str...read more
  2. Basics of SQL Basics CMD commands SQL qu...read more
  3. Basics are more important with good communication ski...read more

Recently Viewed

INTERVIEWS

Elewayte

No Interviews

INTERVIEWS

Thorogood

No Interviews

INTERVIEWS

Bajaj Finserv

No Interviews

INTERVIEWS

Bounteous x Accolite

No Interviews

INTERVIEWS

Invenics

No Interviews

SALARIES

Elewayte

INTERVIEWS

Providence Global Center

No Interviews

INTERVIEWS

Subros

No Interviews

INTERVIEWS

Skilldzire Technologies

No Interviews

INTERVIEWS

Dell

No Interviews

Tell us how to improve this page.

Bajaj Finserv Software Developer Interview Process

based on 5 interviews

1 Interview rounds

  • Coding Test Round
View more
Bajaj Finserv Software Developer Salary
based on 62 salaries
₹6.2 L/yr - ₹16 L/yr
44% more than the average Software Developer Salary in India
View more details

Bajaj Finserv Software Developer Reviews and Ratings

based on 13 reviews

3.6/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.6

Salary

4.1

Job security

3.3

Company culture

3.0

Promotions

3.6

Work satisfaction

Explore 13 Reviews and Ratings
Assistant Manager
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Officer
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Manager
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
866 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Bajaj Finserv with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.8
Compare

State Bank of India

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