Skip to main content

Walkin at Saggezza India for Java Software Developer On 4th August

Company        Saggezza India Pvt. Ltd.

Website          www.saggezza.com

Eligibility        Any Graduate/PG


Experience     0-2 Years

Location         Chennai

Saggezza India Pvt. Ltd.

Job Role: Testing Resources

Job Summary :

The requirement is for Java Positions.

Candidates who are well versed with Core Java and JSP, Servlet, JDBC. Writing Code, SQL queries/Procedures & JUnit Test Cases.

Technical:

Should have good knowledge in Core Java, JSP Servlet, JDBC (key requirement),JUnit, XML

Database Query and store procedures

Working exposure to Struts, Spring, Hibernate would be an added advantage

Web Services (nice to have)

General:

Excellent communication both in written and Verbal

Analytical and documentation skills using Modeling tools

Has knowledge in structured working and following full SDLC processes

Positive attitude:

Ready to Demonstrate Coding solutions.

Walkin Interview at Chennai on 4th August 2012, Saturday

Walk-In Address:
Saggezza India Pvt. Ltd., Chennai
9E, 9th Floor | IIT Madras Research Park
Kanagam Road | Taramani | Chennai - 600113

Comments

Post a Comment

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