Skip to main content

Walkin for Java Developers At Sutherland Global Services Inc On 9th And 10 th Aug 2012

Company        Sutherland Global Services Inc

Website          www.sutherlandglobal.com

Eligibility        Any Graduate


Experience     1-5 Years

Location         Chennai

Sutherland Global Services Inc

Job Role: Java Developer with 1-5 years Exp

Job Summary :

Sutherland Global services is hiring for IT operations - Looking forward to hire experienced Java professionals 1- 5 years experience for Chennai Location.

Hands on experience in Java , JavaScript, XML, AJAX, Spring, Struts, JSP, Eclipse IDE, Design Patterns.

Any mainstream application server e.g. Tomcat, Weblogic , Version control product like SVN, CVS.

Familiarity with Apache Tomcat, Apache Web Server, UNIX commands and scripting, Hudson, Ant, Maven, JUnit, ORM tools like Hibernate

Experience in Web Services, REST, SOA, XML

Experience in MySQL , SQL Server 2005 & 2008

Experience in Development lifecycle methodology like Agile

Highly self-motivated and directed

Proven analytical and problem-solving abilities

Experience working both independently and in a team-oriented, collaborative environment

Should be strong in communication skills.

Interested candidates , please forward your resume with the required details and Walk In to the below address between 3 pm to 6 pm on Thursday and Friday ( Aug 9th , 10 th , 2012 )

Current CTC

Expected CTC

Notice Period

Overall Exp

Forward Your Resume: saravana.kumarm1@sutherlandglobal.com

Preference will be given fo chennai based candidates who can join immediately.

Address:
Sutherland Global Services Inc
383, Velachery Tambaram High Road, Vijayanagar,
Velachery
CHENNAI,Tamilnadu,India 600042

Contact Person: Saravana Kumar.M

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