Skip to main content

Walkin at HCL Technologies for Technical On 29th Oct

Company        HCL Technologies

Website          www.hcl.com

Eligibility        B.Tech/B.E,M.Tech

Experience     Freshers


Location         Mumbai

HCL Technologies
Job Role: Technical Support Engineer

Job Summary :

Education Qualification :

B.E/B.Tech 2012 pass out.

HSC minimum 50%

SSC Minimum 50%

Walk-in Date On 29th October 2012 @ Timings : 10:30am to 4:30pm

Address:
HCL Comnet Ltd.,
Ground floor, Dorr-Oliver House,
Chakala, New Link Road,
Andheri East.
Mumbai

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