Skip to main content

Job openings for Customer support, Technical Support

Company        SignVOX Software Pvt.Ltd

Website          www.signvox.com

Eligibility        Any Graduate


Experience     Freshers

Location         Hyderabad

SignVOX Software Pvt.Ltd

Job Role: Customer support / Technical Support (NON VOICE)

Job Summary :

We are looking for the candidates who are having Effective Communication Skills and Minimum Knowledge on Computers. As we are into software application development we have the clients over USA, South Africa and Austarlia.

Responsibilities:

Solve the queries of the customers and support.

Process: Complete NON VOICE or CHAT SUPPORT Process.

Timings :

Males: 7.00 P.M to 4.00 A.M

Fe-males: 5.30 A.M to 2.30 P.M (Fixed shift for females)

Candidates with effective communication skills only should apply.

Screening Process:

1.) Written Test (to check verbal skills)

2.) Technical & HR (to check communication skills)

Qualification : Any Graduate ( Graduation is Must )

Contact Us:

Mr.P.Manjunath Reddy

Forward Your Resume: manjunath@signvox.com

Contact Number: 9966786359

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