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

Bajaj Finserv React Developer Interview Questions and Answers

Updated 29 May 2022

Bajaj Finserv React Developer Interview Experiences

1 interview found

I was interviewed in Aug 2021.

Round 1 - Assignment 

Round duration - 120 minutes
Round difficulty - Easy

Round 2 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

  • Q1. What is the difference between TRUNCATE and DELETE in a database management system?
Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

Round 4 - HR 

Round duration - 5 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as React developer in PuneEligibility criteriaNABajaj Finserv Limited interview preparation:Topics to prepare for the interview - Data structures, ReactJs, OOPS, DBMS and MySQLTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : If you are applying for a specific role, make sure you know about that technology in-depth.
Tip 2 : Go through the basics of DBMS and MySQL.

Application resume tips for other job seekers

Tip 1 : Have some quality projects which are relevant to your skills on resume.
Tip 2 : Always mention the skills, projects and internships which you are completely aware of.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via UBS portal and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Assignment 

Hacker rank test was sent which consisted of react, js, HTML, css, j query and Java questions. You’ve to complete the test in 60 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Promise, closure, diff btw let and const
  • Q2. Define virtual dom, viewport, redux, use effect hook
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, viewport is the visible area of a web page, Redux is a state management tool, useEffect hook is used for side effects in React components.

    • Virtual DOM is a lightweight copy of the actual DOM, used for efficient updates.

    • Viewport is the visible area of a web page on a device's screen.

    • Redux is a state management tool for managing application state in a predictable way.

    • us...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - work on your basics

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Diff btwn this and arrow in javascript
  • Ans. 

    The 'this' keyword in JavaScript refers to the current object, while the arrow function does not bind its own 'this'.

    • The 'this' keyword in JavaScript refers to the object that is executing the current function.

    • Arrow functions do not bind their own 'this' value, instead they inherit the 'this' value from the enclosing lexical context.

    • Using 'this' in a regular function can lead to unexpected behavior, especially in neste...

  • Answered by AI
  • Q2. Diff btwn let, var, const
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and behaviors.

    • let is block-scoped and can be reassigned, var is function-scoped and can be reassigned, const is block-scoped and cannot be reassigned

    • Using let:

    • let x = 10;

    • x = 20; // valid

    • Using var:

    • var y = 5;

    • y = 8; // valid

    • Using const:

    • const z = 15;

    • z = 25; // error, cannot reassign const variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - stick with basics of javascript and react

Skills evaluated in this interview

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

(1 Question)

  • Q1. Wht is tuple and how it is dif from list
  • Ans. 

    A tuple is an immutable collection of elements, while a list is a mutable collection in Python.

    • Tuples are created using parentheses (), while lists are created using square brackets []

    • Tuples are immutable, meaning their elements cannot be changed once defined

    • Lists are mutable, allowing for elements to be added, removed, or modified

    • Tuples are typically used for fixed collections of items, while lists are used for dynami

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Coin change problem
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. .net related questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Functional knowledge
Round 3 - HR 

(1 Question)

  • Q1. Discussion of salary and position
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Medium level round with moderate tough questions

Round 2 - Technical 

(2 Questions)

  • Q1. Medium of stream of numbers
  • Ans. 

    The medium of a stream of numbers is the value that appears most frequently in the stream.

    • Calculate the frequency of each number in the stream

    • Keep track of the number with the highest frequency

    • Return the number with the highest frequency as the medium

  • Answered by AI
  • Q2. Core Java questions

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Oct 2022. There were 2 interview rounds.

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 - Induces your self 

(3 Questions)

  • Q1. What is a Java and how many types are there
  • Ans. 

    Java is a high-level programming language used for developing applications. There are four types of Java: Java SE, Java EE, Java ME, and JavaFX.

    • Java is an object-oriented language.

    • Java SE (Standard Edition) is used for general-purpose development.

    • Java EE (Enterprise Edition) is used for developing enterprise applications.

    • Java ME (Micro Edition) is used for developing applications for small devices.

    • JavaFX is used for cr...

  • Answered by AI
  • Q2. Tell the permitted Java type
  • Ans. 

    The permitted Java types include primitive types (int, double, boolean, etc.) and reference types (String, Object, etc.)

    • Primitive types are predefined in Java and start with a lowercase letter (e.g., int, double)

    • Reference types are created using classes, interfaces, or arrays (e.g., String, Object, int[])

    • Java also supports autoboxing, which allows primitive types to be used as reference types (e.g., Integer, Double)

  • Answered by AI
  • Q3. Tell the Java coding
  • Ans. 

    Java is a popular programming language used for developing web applications and software.

    • Java is an object-oriented language

    • It is platform-independent

    • Java code is compiled into bytecode

    • Java has a vast library of pre-built classes and methods

    • Java is used for developing Android apps

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Shriram Group Web Developer interview:
  • Html5
Interview preparation tips for other job seekers - This is helpful and I improve myself
This is a great

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. It was a good technical mostly on the JAVA side.

Interview Preparation Tips

Interview preparation tips for other job seekers - most of the question were from java core and java spring
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell about a time where you had competing demands from stakeholders.

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
Wells Fargo Interview Questions
3.9
 • 567 Interviews
Citicorp Interview Questions
3.7
 • 566 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
BNY Interview Questions
3.9
 • 339 Interviews
View all
Assistant Manager
1.3k salaries
unlock blur

₹1.5 L/yr - ₹6.7 L/yr

Sales Officer
1.2k salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Sales Executive
1.2k salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Sales Manager
1k salaries
unlock blur

₹1.5 L/yr - ₹9.6 L/yr

Manager
868 salaries
unlock blur

₹3 L/yr - ₹11 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