Skip to main content

Walkin at Lionbridge Technologies Inc for Technical Writers On 24th Nov

Company        Lionbridge Technologies Inc

Website         www.lionbridge.com

Eligibility        Any Graduate - Any Specialization

Experience     Freshers


Location         Mumbai

Lionbridge Technologies Inc
Job Role: Technical Writers

Job Summary :

Lionbridge India is conducting walk-in interviews for fresh technical writers at Mumbai office on Saturday, 24th November, 2012 between 11am to 3pm.

Graduates in any engineering discipline may apply. Candidates with good software knowledge from non-engineering background can also apply.

Kindly bring a copy of your resume. If you are interested only in software development, please do not apply.

PRIMARY RESPONSIBILITIES/DUTIES

Ability to understand software programming basics

Good English speaking and writing skills

Ability to work in teams

Salary: INR 2,25,000 - 3,00,000 P.A , Opening(s): 5

Walkin Interview on 24th November from 11 AM

Walk-In Venue:

Lionbridge Technologies

6th Floor, Spectra Building,

Hiranandani Business Park,

Powai. Mumbai - 400076.

Landmark: above D-mart.

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