Skip to main content

Urgent openings for Java Trainees

Company        KSAB Software

Website          www.ksabsoft.com

Eligibility        B.E (CS,EEE,ECE,IT),MCA

Experience     Nil


Location         Chennai

KSAB Software
Job Role: Java Trainees

Job Summary :

We have an urgent requirement for Java Trainees from 2009,2010 Batches..

Candidate should be B.E(CS,EEE,ECE,IT),MCA.

Candidate Academics should be above 60% from 10th,12th,UG,PG otherwise resume will not be considered...

Only open for Chennai Candidates!!!!!

Subject line MUST mention the percentage, year of pass out..

e.g.B.E-.2009- first class -65%-Anna University

The resumes without the above subject format will be REJECTED.

Qualification : B.E (IT,CSE,ECE,EEE)

Address :
48 Lb Road,Thiruvanmiyur,Adyar,Chennai-41

Contact Us:

Contact Person: Saravanan

Forward Your Resume: saravanan.g@ksabsoft.com

Contact Numbers: 044-24522784

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