Skip to main content

Walkin for Project Coordinator on 31 Oct to 3 Nov

Company        Microware

Website          www.microware.org.in

Eligibility        B.Tech(ECE/EEE/EIE),M.Tech(Embedded/VLSI/EEE)

Experience     0-1 Year

Location         Hyderabad


Microware
Job Role: Project Coordinator

Job Summary :

Willing to teach Academic projects to the Engineering students.

Qualification : B.Tech(ECE/EEE/EIE),M.Tech(Embedded/VLSI/EEE)

Note: This is not Consultancy, Direct Company Recruitment.

If interested, Walk in Interview on 31/10/2012, 1/11/2012, 2/11/2012, 3/11/2012 @ 10 AM – 4 PM.

Venue:
Microware,
Plot no: 40, 2nd floor, Gayathri nagar
SAP street, Behind: Mythri vanam,
Ameerpet, Hyderabad-38.

Contact Name : M.Annapurna-HR

Contact Numbers : 040-64543699,9291546536

Email ID: annapurna@microware.org.in

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