Skip to main content

Auxir Infosolution Hiring Advisers and Managers

Company        Auxir Infosolution

Website          www.auxir.com

Eligibility        Any Graduate,Undergraduate


Experience     Freshers/Exp

Location         Pune

Auxir Infosolution

Job Role: Advisers (BPO UK Outbound Process) and Managers(Experienced)

Job Summary :

Good Communication Skills required.This is International voice process.Need advisers for Debt Management Process for UK.No graveyard shift.Salary 7k+incentive.

Candidates with Good communication skill should apply.

Qualification : Any Graduate,undergraduate.

Contact Us:

Mr. Ankur Maurya

Forward Your Resume: ankur.maurya@auxir.com

Contact Numbers: 8237553866

Comments

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