Skip to main content

Walkin for JAVA Trainee From 29th Nov to 1st Dec

Company        SRK Infosystems

Website          www.srkinfosystems.com

Eligibility        BE/ MCA

Experience     Freshers


Location         Chennai

SRK Infosystems
Job Role: JAVA Trainee

Job Summary :

Job Description:

• Designing and Developing

• Working closely with analysts, software developers.

• Producing detailed specifications and writing the program codes.

• Testing the product in controlled, real situations before going live.

• Six Months training period, 0-3 months - no stipend 4-6 months - Rs 4000/- as stipend

• After successfully completion of training period salary will be 7500/- per month.

Walk-in: Date: 29/11/2012 - 01/12/2012 Time : 10am - 5pm

Venue:
SRK Infosystems,
No7, Second Floor,
CLC Works Road,
New Colony,
Chrompet.
Chennai-44.

Contact Us:

Forward Your Resume: hr@srkinfosystems.com

Contact Number: 044-22410447

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