Upload Button Icon Add office photos
Engaged Employer

i

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

Aadhar Housing Finance Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Aadhar Housing Finance Branch Manager Interview Questions and Answers

Updated 22 Jan 2024

Aadhar Housing Finance Branch Manager Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Behaviour to handle the management

Round 2 - Group Discussion 

What are all the responsibility to come out with best results towards business.

Round 3 - HR 

(1 Question)

  • Q1. Experience and expectations
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 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Require good knowledge about your previous job and also require good market knowledge..

Branch Manager Interview Questions Asked at Other Companies

Q1. Role of Branch Manager?How to manage team?Cross sell?
Q2. You are a DBM officially but taken a charge of a BM in your curre ... read more
Q3. What is 2515? Wis difference between commercial car and private c ... read more
Q4. Is it easy to give loans or is it easy to collect monthly EMI ?
asked in Axis Bank
Q5. What's the difference between operation and sales.

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Aug 2021. 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 - One-on-one 

(1 Question)

  • Q1. Background, customer handling quality, working experiences and current market scenario and knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear and specific and do not show over of yourself.

Interview Questionnaire 

1 Question

  • Q1. About whole topic of stock market

Interview Preparation Tips

Interview preparation tips for other job seekers - Always keep the same topic on the interview, on which you are expert so that he does not go to that topic, which you know less about. And he thought u know everything....
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Past experience, hni clients handling.
  • Q2. Life insurance sales

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain your experience.
You should have life insurance sales experience
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Why are you job change How is many experience and what is monthly Targets
Round 2 - One-on-one 

(1 Question)

  • Q1. How many achieve the Targets and team experience and other questions

Interview Preparation Tips

Topics to prepare for ICICI Home Finance Branch Sales Manager interview:
  • Target Achievement
  • Team Handling
  • Mortgage Loans
Interview preparation tips for other job seekers - good

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 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 - HR 

(1 Question)

  • Q1. Be confident on yourself... No rocket science..
Round 3 - One-on-one 

(1 Question)

  • Q1. Be confident on loans, customer acquisition, team leading

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge on loan products, competitors mapping, customer acquisition.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. How much business you use to do in previous company
  • Ans. 

    I consistently exceeded sales targets in my previous company, consistently growing my business year over year.

    • Consistently exceeded sales targets set by the company

    • Grew business year over year by implementing effective sales strategies

    • Built strong relationships with clients to increase repeat business

    • Utilized market research to identify new business opportunities

  • Answered by AI
  • Q2. How many members team handling
  • Ans. 

    I currently handle a team of 10 members.

    • I currently manage a team of 10 sales representatives.

    • I oversee a team of 10 employees in the branch sales department.

    • My team consists of 10 members including sales executives and customer service representatives.

  • Answered by AI

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The round consisted of 3 coding Questions and 20 Technical MCQs.

  • Q1. 

    Connect Ropes Problem Statement

    Given a number of ropes denoted as 'N' and an array containing the lengths of these ropes, your task is to connect the ropes into one single rope. The cost to connect two r...

  • Ans. 

    The task is to find the minimum cost required to connect all the ropes by summing their lengths.

    • Iterate through the ropes and connect the two shortest ropes at each step to minimize cost

    • Use a priority queue to efficiently find the shortest ropes

    • Keep track of the total cost as you connect the ropes

    • Example: For input [4, 3, 2, 6], connect 2 and 3 (cost 5), then connect 4 and 5 (cost 9), then connect 9 and 6 (cost 15) for

  • Answered by AI
  • Q2. 

    Idempotent Matrix Verification

    Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:

    M * M = M

    Input:

    The first line cont...
  • Ans. 

    Check if a given matrix is idempotent by verifying if M * M = M.

    • Iterate through the matrix and multiply it with itself to check if it equals the original matrix.

    • If the condition M * M = M is satisfied, then the matrix is idempotent.

    • If the condition is not satisfied, then the matrix is not idempotent.

  • Answered by AI
  • Q3. 

    Sum of LCM Problem Statement

    Given an integer 'N', calculate and print the sum of the least common multiples (LCM) for each integer from 1 to N with N.

    The sum is represented as:
    LCM(1, N) + LCM(2, N) + ....

  • Ans. 

    Calculate and print the sum of least common multiples (LCM) for each integer from 1 to N with N.

    • Iterate from 1 to N and calculate LCM of each number with N

    • Add all the calculated LCM values to get the final sum

    • Return the sum for each test case

  • Answered by AI
Round 2 - Coding Test 

Round duration - 120 minutes
Round difficulty - Medium

This round is a Long Coding Round. Every Candidate was assigned with a mentor who guides them, We were given a real-life scenario for which we have to construct a database with required tables. We should draw an ER Diagram to demonstrate the Database. After the Database Completion, We have to Start Coding the Application. The Design(like Placing the button or background colour) is not given much importance. They mainly test the practical knowledge of candidates in OOPS and expertise in a C, C++, Java, Android or any other language were OOPS Concepts can be applied.

Round 3 - Video Call 

(1 Question)

Round duration - 180 Minutes
Round difficulty - Medium

This Round is a technical Interview. I was asked Questions to test my Technical Knowledge.

  • Q1. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while iterating through the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity of the algorithm should be O(N) where N is the size of the array.

  • Answered by AI
Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in ChennaiEligibility criteria7 CGPAMr. Cooper interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, OOPS, Database Management SystemTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do Atleast 2 Projects
Tip 2 : Be Strong in what you have in your resume
Tip 3 : Be Confident and Polite

Application resume tips for other job seekers

Tip 1 : Keep it Short to one or two pages
Tip 2 : Keep it standout..as it is what projects you uniquely.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. They asked only how much clients you will switched your previous company to kotak within 3 months. Asking about margins that's enough .

Interview Preparation Tips

Interview preparation tips for other job seekers - I got selected in 2 rounds both manager asking same thing about how much account logins in upcoming 3 months and nothing asked about anything.

Aadhar Housing Finance Interview FAQs

How many rounds are there in Aadhar Housing Finance Branch Manager interview?
Aadhar Housing Finance interview process usually has 2-3 rounds. The most common rounds in the Aadhar Housing Finance interview process are HR, Resume Shortlist and Aptitude Test.
How to prepare for Aadhar Housing Finance Branch Manager 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 Aadhar Housing Finance. The most common topics and skills that interviewers at Aadhar Housing Finance expect are Home Loans, Lap, Mortgage Loans, hl and housing finance.

Tell us how to improve this page.

Aadhar Housing Finance Branch Manager Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 244 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
TresVista Interview Questions
2.8
 • 115 Interviews
Pine Labs Interview Questions
3.4
 • 113 Interviews
Mr Cooper Interview Questions
4.0
 • 86 Interviews
Axis Direct Interview Questions
3.8
 • 79 Interviews
Synchrony Interview Questions
4.3
 • 78 Interviews
View all
Aadhar Housing Finance Branch Manager Salary
based on 147 salaries
₹4 L/yr - ₹11.2 L/yr
8% less than the average Branch Manager Salary in India
View more details

Aadhar Housing Finance Branch Manager Reviews and Ratings

based on 61 reviews

4.2/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

4.1

Salary

3.8

Job security

3.9

Company culture

3.9

Promotions

3.7

Work satisfaction

Explore 61 Reviews and Ratings
Branch Credit Manager
281 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Brach Operation Manager
226 salaries
unlock blur

₹2.6 L/yr - ₹7.5 L/yr

Relationship Officer
179 salaries
unlock blur

₹1.2 L/yr - ₹3.2 L/yr

Sales Manager
165 salaries
unlock blur

₹2.2 L/yr - ₹5.2 L/yr

Relationship Manager
159 salaries
unlock blur

₹1.9 L/yr - ₹4 L/yr

Explore more salaries
Compare Aadhar Housing Finance with

SBI Cards & Payment Services

3.7
Compare

Axis Direct

3.8
Compare

Kotak Securities

3.6
Compare

ICICI Home Finance

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