Skip to main content

Walkin for Software Test Engineers On 22nd,23rd Nov at 3DPLM Software

Company        3DPLM Software

Website         www.3dplmsoftware.com

Eligibility        BE/BTech/MTech/Doctorate

Experience     0.6-2 Year


Location         Pune

3DPLM Software
Job Role: Software Test Engineer

Job Summary :

Candidates Profile:

Strong testing skills & Analytical ability

Experience on testing mechanical / PLM products

Technical mind set & job aspiration

Walk On 22nd & 23rd Nov @ Timing 10 AM to 11 AM

Venue:
3dplm Software Solutions Ltd.
Plot No.15/B, Pune Infotech Park
M.I.D.C, Hinjewdi
Pune - 411057

Also send the below details:

Total Experience:

Current CTC:

Relevant CTC:

Notice period:

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