Skip to main content

Branch Manageris required at Personal Loan for NBFC

 Job Description
Branch Manager - Personal Loan
Team Handling
Profitability Management
Salary:

Not Disclosed by Recruiter
Industry:

Banking / Financial Services / Broking
Functional Area:


Sales, Retail, Business Development
Role Category:

Retail Sales
Role:

Branch Manager
Keyskills:

sales personal loan, BM, branch manager, loans, stpl, assistant branch manager, branch incharge
Desired Candidate Profile
Education:

(UG - Any Graduate - Any Specialization, Graduation Not Required) AND (PG - Any Postgraduate - Any Specialization, Post Graduation Not Required) AND ( Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required)
7-8 years with 4 years in assets (PL)
Ability to plan and execute
Team handling exp
Company Profile
Voice HR Solutions
http://www.voicehr.in/
Client of Voice HR Solutions

Comments


  1. Thank you for sharing this blog.Looking forQuick home loans ?We offer quick home Loan in 1 hour for salaried professionals. FlexSalary can feed your cash emergency with Immediate and simple loan process.

    ReplyDelete

Post a Comment

Popular Posts

How to find out Max Salary from each department

You can find maximum salary for each department by grouping all records by DeptId and then using MAX() function to calculate maximum salary in each group or each department. SQL Query: SELECT DeptID, MAX(Salary) FROM Employee  GROUP BY DeptID. This questions become more interesting if Interviewer will ask you to print department name instead of department id, in that case you need to join Employee table with Department using foreign key DeptID, make sure you do LEFT or RIGHT OUTER JOIN to include departments without any employee as well.  Here is the query