Skip to content

Bajaj Finserv Placement Papers 2024

Overview

This page collects Bajaj Finserv placement papers from 2024 with previous-year questions, solutions, and the 2024 exam pattern. It is useful when you want real drive history: what the OA looked like, which question types repeated, and how solutions were approached. Work through the papers below to build speed and accuracy, then compare against newer 2025 material so your prep matches both established Bajaj Finserv patterns and the latest shifts.

Bajaj Finserv Online Assessment 2024 pattern

Section Questions Time Difficulty
Aptitude 20-25 30 min Medium
Technical 15-20 30 min Medium
Coding 1-2 30 min Medium

Bajaj Finserv Placement Papers 2024 - actual questions & solutions

This section contains practice questions styled on Bajaj Finserv placement papers 2024 (previous-year pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.

Question 1

Q1: Pipe A fills a tank in 12 hours, pipe B in 18 hours. How long to fill together?

Solution:

Combined rate = 1/12 + 1/18 = (12+18)/(12×18). Time = 12×18/(12+18) = 7.2 hours.

Answer: 7.2 hours

Question 2

Q2: The ratio of ages of A and B is 2:3. After 6 years, the ratio becomes 3:4. Find A’s present age.

Solution:

Let ages be 2x and 3x.

(2x + 6)/(3x + 6) = 3/4 4(2x + 6) = 3(3x + 6) 8x + 24 = 9x + 18 x = 6 A’s age = 2×6 = 12 years.

Answer: 12 years

Question 3

Q3: A and B together finish a job in 10 days. B alone takes 15 days. How many days does A alone take?

Solution:

Together rate = 1/10. B’s rate = 1/15.

A’s rate = 1/10 − 1/15 = (15−10)/(10×15) = 5/150. Days for A alone = 150/5 = 30 days.

Answer: 30 days

Question 4

Q4: Average of 5 numbers is 20. If one number 15 is replaced by 25, what is the new average?

Solution:

Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.

Answer: 22

Question 5

Q5: In a row of 46 students, A is 8th from the left and B is 13th from the right. How many students are between A and B if A is to the left of B?

Solution:

Positions from left: A = 8, B = 46 − 13 + 1 = 34. Students between = 34 − 8 − 1 = 25.

Answer: 25

Question 6

Q6: Find the next number in the series: 5, 10, 20, 40, ?

Solution:

Pattern: Each term ×2

Next term = 80.

Answer: 80

Question 7

Q7: Choose the synonym of ‘Genuine’.

Solution:

In placement verbal sections, ‘Genuine’ is closest in meaning to Authentic among common options.

Answer: Authentic

Question 8

Q8: Fill in the blank: ‘She has been working here _____ 2019.’

Solution:

Use since with a point in time; use for with a duration.

Correct: since.

Answer: since

Question 9: climbing stairs

Show solution

Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?

Example:

Input: n = 4
Output: 5

Solution (Java):

public int climbStairs(int n) {
if (n <= 2) return n;
int a = 1, b = 2;
for (int i = 3; i <= n; i++) {
int c = a + b; a = b; b = c;
}
return b;
}

Time Complexity: O(n)
Space Complexity: O(1)

Question 10: valid parentheses

Show solution

Problem Statement: Given a string of brackets, determine if it is valid.

Example:

Input: "()[]{}"
Output: true

Solution (Java):

public boolean isValid(String s) {
Deque<Character> st = new ArrayDeque<>();
Map<Character, Character> pair = Map.of(')', '(', ']', '[', '}', '{');
for (char c : s.toCharArray()) {
if (pair.containsValue(c)) st.push(c);
else if (st.isEmpty() || st.pop() != pair.get(c)) return false;
}
return st.isEmpty();
}

Time Complexity: O(n)
Space Complexity: O(n)

Question 11: rotate array right by k

Show solution

Problem Statement: Rotate the array to the right by k steps.

Example:

Input: [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]

Solution (Java):

public void rotate(int[] nums, int k) {
k %= nums.length;
reverse(nums, 0, nums.length - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.length - 1);
}
void reverse(int[] a, int l, int r) {
while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }
}

Time Complexity: O(n)
Space Complexity: O(1)

Key insights from 2024 Bajaj Finserv Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, financial services domain knowledge
  3. Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
  4. Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: Bajaj Finserv assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, financial services domain knowledge

Bajaj Finserv 2024 interview experiences

Based on candidate experiences from 2024 Bajaj Finserv interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, financial services domain knowledge, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, financial services industry interest

Common 2024 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, mixture problems
  • Technical: Programming concepts, DBMS, OOPs, financial services domain knowledge
  • Coding: Arrays, strings, basic algorithms
  • Behavioral: Problem-solving approach, teamwork, motivation, financial services industry interest

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand programming fundamentals, DBMS, OOPs, financial services domain basics
  • Practice coding problems - arrays, strings, basic algorithms
  • Prepare behavioral examples using STAR format
  • Understand Bajaj Finserv’s business model and financial services offerings

For detailed interview experiences, visit Bajaj Finserv Interview Experience page.

Preparation tips for Bajaj Finserv 2024 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Technical Fundamentals: Strong understanding of programming, DBMS, OOPs concepts
  3. Financial Services Domain: Basic understanding of financial services industry and Bajaj Finserv services
  4. Practice Previous Year Papers: Solve Bajaj Finserv assessment papers from 2020-2024 to understand patterns
  5. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  6. Coding Practice: Practice arrays, strings, basic algorithms
  7. Technical MCQs: Practice programming concepts, DBMS, OOPs, financial services basics
  8. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, financial services interest
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. Financial Services Focus: Understand financial services industry trends and Bajaj Finserv’s services

Comments & Suggestions

Similar companies

HDFC Bank · ICICI Bank · Paytm · Goldman Sachs · JP Morgan · Deutsche Bank