Skip to main content

MphasiS Hiring L1 Infrastructure Support Engineer

Company        MphasiS Limited

Website          www.mphasis.com

Eligibility        Any Graduate/PG


Experience     0-6 Months

Location         Hyderbad

MphasiS Limited

Job Role: L1 - Infrastructure Support Engineer

Job Summary :
Requirement - 6 positions

Shift: 24/7

Role: L1 - Infrastructure Support Engineer

Exp: 0-6 months

JD:

1) Bachelors degree in any technical stream with minimum of 60% on aggregate/ BSc Computers / BCA

2) Good Communication Skills

3) Knowledge on Operating Systems.

4) Knowledge on MS Office Suite

5) Willing to work in 24*7 shifts

Responsibility:

1) Patching and Remediation on Wintel, Unix (Solaris, AIX and Linux)

2) Performing Prechecks

3) Performing Post Checks

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