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 Solution Architect Interview Questions, Process, and Tips

Updated 20 Nov 2024

Bajaj Finserv Solution Architect Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is difference between Association, Association, Aggregation ?
  • Ans. 

    Association represents a relationship between two classes, Aggregation is a type of association with a whole-part relationship.

    • Association represents a relationship between two classes without implying any ownership.

    • Aggregation is a type of association where one class is a part of another class.

    • Composition is a stronger form of aggregation where the part cannot exist without the whole.

    • In UML, association is represented...

  • Answered by AI
  • Q2. Write Java program to invoke a AWS lambda function ?
  • Ans. 

    To invoke an AWS Lambda function using Java program.

    • Create an AWS Lambda client using AWS SDK for Java

    • Invoke the Lambda function using invoke method

    • Handle the response from the Lambda function

  • Answered by AI
  • Q3. Write Java program for Singleton pattern ?
  • Ans. 

    Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Create a private static instance of the class

    • Provide a public static method to access the instance

    • Ensure the constructor is private to prevent instantiation

  • Answered by AI
  • Q4. How Security is maintained in Microservices ?
  • Ans. 

    Security in Microservices is maintained through authentication, authorization, encryption, and monitoring.

    • Implementing authentication mechanisms like OAuth, JWT, or API keys to verify the identity of clients accessing the microservices.

    • Utilizing authorization techniques such as role-based access control (RBAC) or attribute-based access control (ABAC) to control what actions users can perform.

    • Encrypting data in transit ...

  • Answered by AI
  • Q5. What design patterns you have worked ?
  • Ans. 

    I have worked with design patterns such as Singleton, Factory, Observer, and Strategy.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified a...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. How much time you take to show the demo after getting the RFP ?
  • Ans. 

    The time taken to show the demo after receiving the RFP varies based on project complexity and client requirements.

    • The time frame for demo preparation can range from a few days to a few weeks, depending on the scope of the project.

    • It is important to thoroughly understand the RFP requirements before scheduling the demo to ensure all key points are addressed.

    • Collaboration with the sales team and other stakeholders is cru...

  • Answered by AI
  • Q2. What AWS services you have used ?
  • Ans. 

    I have used a variety of AWS services including EC2, S3, RDS, Lambda, and CloudFormation.

    • EC2 - Elastic Compute Cloud for scalable virtual servers

    • S3 - Simple Storage Service for object storage

    • RDS - Relational Database Service for managed databases

    • Lambda - Serverless computing service for running code without provisioning servers

    • CloudFormation - Infrastructure as Code service for automating resource provisioning

  • Answered by AI
  • Q3. Where AWS lambda you have used ?
  • Ans. 

    I have used AWS Lambda for building serverless applications and automating tasks.

    • Developed a serverless image processing application using AWS Lambda, S3, and API Gateway

    • Implemented a cron job using AWS Lambda to automatically backup DynamoDB tables

    • Integrated AWS Lambda with Amazon SNS to send notifications based on certain events

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bajaj Finserv Solution Architect interview:
  • Core Java
  • AWS
  • Spring
Interview preparation tips for other job seekers - Mostly they conduct 2 technical rounds. 1st round is conducted by third party called flocareer and 2nd round by Bajaj Leadership team. It seems they are conducting false interviews for TRP

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Few DSA questions, questions about my projects and my resume. Also, since I specialise in python, if I could create an API using it. HR questions, hobbies, leadership experience...

Interview Preparation Tips

Interview preparation tips for other job seekers - Understanding the culture of J.P. Morgan Chase played a big role in passing the interview. The coding questions were easy/medium level. The interviewers were very friendly.

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

Interview Questionnaire 

1 Question

  • Q1. What are your real time experiences? Why do you think this job should be offered to you? Describe about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Speak continuously and without abrupting.Dressing should be formal. Webcam and microphone must be in good condition.

I applied via LinkedIn and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Coding Test 

4 Programming questions
10 MCQ

Each programming question has its own time allocated.
10 mins for MCQ.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Bases on C++ multithreding
  • Ans. 

    C++ multithreading allows for concurrent execution of multiple threads within a single program.

    • Use mutexes to prevent race conditions and ensure thread safety

    • Avoid deadlocks by carefully managing locks and avoiding nested locks

    • Consider using condition variables to signal between threads

    • Use thread pools to manage and reuse threads efficiently

    • Be aware of potential performance issues and overhead with multithreading

  • Answered by AI
  • Q2. C++ pointers and smart pointers quetions
Round 3 - One-on-one 

(2 Questions)

  • Q1. C++ multithreading quetions
  • Q2. Work life, achievemts.. scenario reuestions
Round 4 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and about the programming language...

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Arrays, linked list, DP

Round 2 - Virtual Interview 

(1 Question)

  • Q1. Virtual Interview
Round 3 - Code for Good Hackathon 

(1 Question)

  • Q1. Scenario-based questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Print all the permutations of a string both iterative and recursive way.
  • Ans. 

    Print all permutations of a string iteratively and recursively.

    • Iterative approach: Use a stack to keep track of characters and their positions. Swap characters to generate permutations.

    • Recursive approach: Use backtracking to generate all possible permutations by swapping characters.

    • Example: Input 'abc', output ['abc', 'bac', 'cab', 'acb', 'bca', 'cba']

  • Answered by AI

Skills evaluated in this interview

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

DFS questions, and Python coding challenge

Round 2 - Technical 

(1 Question)

  • Q1. Python technical questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding DSA questions

Round 2 - Technical 

(1 Question)

  • Q1. Python basics.. what are generators, decorators, lambda
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

DSA topics were asked

Round 2 - Recorded Online Interview 

(2 Questions)

  • Q1. If you had to explain a difficult topic to someone how would you explain it?
  • Q2. Describe a situation when you had to explain something to someone who was not understanding a concept related to a topic. Explain how you overcame the issue .
  • Ans. 

    I explained a complex algorithm to a non-technical team member.

    • Broke down the concept into simpler terms

    • Used analogies or real-life examples to clarify

    • Encouraged questions and feedback

    • Offered additional resources for further understanding

  • Answered by AI

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Software Engineer interview:
  • Personal Questions
Interview preparation tips for other job seekers - If you are a male from tier-2 or tier-3 college and you are applying for Code for Good hackathon then there is very little probability that they will select you after round 2 which is the online personal interview round(recorded) .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. All DSA and OOPs questions
Round 2 - Technical 

(1 Question)

  • Q1. Same as round 1
Round 3 - Technical 

(1 Question)

  • Q1. Design round ..
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions

Bajaj Finserv Interview FAQs

How many rounds are there in Bajaj Finserv Solution Architect interview?
Bajaj Finserv interview process usually has 2 rounds. The most common rounds in the Bajaj Finserv interview process are Technical.
How to prepare for Bajaj Finserv Solution Architect 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. The most common topics and skills that interviewers at Bajaj Finserv expect are Angular, Bootstrap, CSS, Java and Microservices.
What are the top questions asked in Bajaj Finserv Solution Architect interview?

Some of the top questions asked at the Bajaj Finserv Solution Architect interview -

  1. How much time you take to show the demo after getting the RF...read more
  2. What is difference between Association, Association, Aggregatio...read more
  3. How Security is maintained in Microservice...read more

Tell us how to improve this page.

Bajaj Finserv Solution Architect Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

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
 • 569 Interviews
Citicorp Interview Questions
3.7
 • 568 Interviews
HSBC Group Interview Questions
4.0
 • 491 Interviews
American Express Interview Questions
4.2
 • 364 Interviews
BNY Interview Questions
3.9
 • 341 Interviews
View all
Bajaj Finserv Solution Architect Salary
based on 6 salaries
₹28 L/yr - ₹49.3 L/yr
37% more than the average Solution Architect Salary in India
View more details

Bajaj Finserv Solution Architect Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

2.0

Skill development

2.0

Work-life balance

2.0

Salary

3.0

Job security

2.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
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