Skip to main content

Logic Systems Hiring Dot Net And Java Developers

Company        Logic Systems

Website          www.logicsystems.org.in

Eligibility        Any Graduate 2010/2011 Pass outs

Experience     Fresher/Experienced


Location         Hyderabad

Logic Systems
Job Role: .Net & Java Developers

Job Summary :

Job Description:

We need Male Candidates. They should have very good .NET programming skills.

They should be ready to relocate around AP and teach .NET classes for the students.

Interested Candidates can call & Fix their appointment for Interview.

Position : .Net & Java Developers

Exp : Fresher/Experienced

Location : Hyderabad

Qualification : Any Graduate 2010/2011 Pass outs

Address:
Logic Systems
C-25, Ground Floor,
Shiva Sai Gayathri Nilayam,
Opp. Lane Vellanki Foods,
Madhura Nagar,
Hyderabad - 500038

Contact Us:

Contact Person: Swathi

Forward Your Resume: careers@programmer.net

Contact Numbers: 040-40274843, 8143615322

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