Skip to main content

Walkin for VLSI Developers On 23rd,24th,26th Nov

Company        Microware

Website          www.microware.org.in

Eligibility        B.Tech (ECE)/ M.Tech (VLSI)

Experience     2+ Year


Location         Hyderabad

Microware
Job Role: VLSI Developer

Job Summary :

Job Description:

Experience on developing the IEEE Project Papers.

Willing to work on Academic B.Tech and M.Tech Projects.

Should have Good communication skills

Walkin Date on 23rd, 24th & 26th @ Timing 10 AM - 4 PM.

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

Contact Us:

Contact Name: Annapurna

Forward Your Resume: annapurna@microware.org.in

Contact Numbers: 040-64543699,9291546536

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