i
Bajaj Finserv
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
Clear (1)
I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.
Calaender based questions
I applied via Campus Placement and was interviewed in Mar 2022. There were 4 interview rounds.
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 .
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
I applied via Campus Placement and was interviewed before Jan 2023. There were 3 interview rounds.
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.
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
I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.
Bajaj Finserv interview questions for designations
Get interview-ready with Top Bajaj Finserv Interview Questions
I was interviewed in Feb 2021.
Round duration - 120 minutes
Round difficulty - Medium
Round duration - 120 minutes
Round difficulty - Medium
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...
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.
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.
The first line contains an in...
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.
Tip 1 : Knowledge of api
Tip 2 : Practice Data Structure based questions.
Tip 3 : Do at least 1 project.
Tip 1 : Keep it short.
Tip 2 : Do not mention participation certificates.
I was interviewed in Dec 2020.
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...
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 ...
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...
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 ...
Silent environment
Evening
One on one interview
Interviewer was friendly by nature
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.
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.
Top trending discussions
I was interviewed before Mar 2016.
posted on 10 May 2015
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...
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.
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...
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
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...
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
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
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 ...
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.
I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 3 interview rounds.
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.
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 {}
Find the number of occurrences of each element in the given ArrayList
based on 5 interviews
1 Interview rounds
based on 13 reviews
Rating in categories
Assistant Manager
1.3k
salaries
| ₹0 L/yr - ₹0 L/yr |
Sales Officer
1.2k
salaries
| ₹0 L/yr - ₹0 L/yr |
Sales Executive
1.2k
salaries
| ₹0 L/yr - ₹0 L/yr |
Sales Manager
1k
salaries
| ₹0 L/yr - ₹0 L/yr |
Manager
866
salaries
| ₹0 L/yr - ₹0 L/yr |
HDFC Bank
ICICI Bank
Axis Bank
State Bank of India