Skip to main content

Walkin at Amura InfoTech for Telecaller From 30th July to 2nd August

Company        Amura InfoTech

Website          www.amurainfotech.com

Eligibility        Any Graduate (Degree Preferred)


Experience     Fresher

Location         Hyderabad

Amura InfoTech

Job Role: Telecaller

Job Summary :

Only female candidates (degree candidates are more preferred)

· Excellent Communication & Convincing Skill.

· Ability to handle multiple tasks simultaneously in an organized way.

· Working Knowledge of Computer (ms-office), Internet

· Making Outbound calls

· Handling customer queries

· Excellent in both written and spoken English

· Ability to provide information verbally clearly and effectively

Direct Walk-in: 30th july to 2nd august @ Timings 10am to 1pm and 2pm to 5pm

VENUE:
Amura Infotech,
Plot no:404
Block-B Pristage rai towers,
croma building, Nims opposite,
Panjagutta, Hyderabad-500082

Contact Us:

Ms. Devi Chaitanya

Forward Your Resume: devichaitanya@amurainfotech.com

Contact Number: 040-40271309

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