Skip to main content

Urgent openings for Senior Software Engineer at Unibros Technologies

Company        Unibros Technologies

Website          www.unibrostechnologies.com

Eligibility        Graduate with Computer Science


Experience     2-4 Years

Location         Chennai

Unibros Technologies

Job Role: Senior Software Engineer With 2-4 Years Exp

Job Summary :

Skill Set:

J2EE, JSP, SERVLET , STRUTS, HIBERNATE 3.X,SPRING , SPRING WEBFLOW, AJAX UI Frameworks , MySQL , PostgreSql, Eclipse

Required Skills:

Ø Strong Knowledge & Experience in Core Java

Ø Java Collections is MUST

Ø Strong in Java script.

Ø Strong programming skills in core JAVA, J2EE skills (Struts, Servlet, Hibernate) with hands on experience in developing optimized Enterprise Applications.

Ø Good knowledge in Spring Framework and Spring Web flow

Ø Preference:

ü Candidates with Certifications.

ü Chennai Candidates only

ü IMMEDIATE JOINERS.

Ø JOINING BONUS FOR IMMEDIATE JOINERS.

Ø Candidates with relevant experience only will be entertained

Where to Apply: lavanya.m@unibrostechnologies.com

Qualification : Graduate with Computer Science background

Address :
Unibros Technologies,
No.6 Alagesan Street,
West Tambaram,
Chennai – 45

Contact Name : HR

Contact Number: 044-42034909

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