Skip to main content

Airframe Aerodesigns Hiring Junior Software Engineers

Company        Airframe Aerodesigns pvt ltd

Website          www.airframeaerodesigns.com

Eligibility        B.Tech/B.E., MCA - Computers


Experience     0-1 Year

Location         Bangalore, Ernakulam / Kochi/ Cochin

Airframe Aerodesigns pvt ltd

Job Role: Junior Software Engineer

Job Summary :

Design, Develop Virtual Lab towards engineering application.

Work with Visual Studio - VC++, VB.Net, Graphic Tools like Flash, 3D Max.

Database Programming with ASP.NET, SQL Server, C++

Understand user requirements, Analyze and Develop software programs.

Software Testing and Software Evaluation

Integrating existing software products and getting incompatible platforms to work together.

Investigating new technologies, creating technical specifications and test plans.

Generate operational documentation with technical authors.

Work closely with project managers, graphic artists, designers, developers, systems analysts, and sales and marketing team.

Apply with updated resume to info@airframeaerodesigns.com & Mention Job designation as subject of the mail.

This particular recruitment is carried out by Technology Training & Research Centre- Bangalore. Short listed candidates will be called for interview. If selected, you will have to undergo intensive training program for 2 months at TTRC Bangalore. Training Fee to be borne by the candidate.

After the completion of training programme candidates will be taken into the payrolls of Airframe Aerodesigns Pvt. Ltd. to undergo 3 months of probation, there-after into permanent posting.

Salary: INR 1,50,000 - 1,75,000 P.A. * stipend of Rs.5000/- will be paid during the training period. * stipend of Rs. 7500/- will be paid during probation

Apply with updated resume to info@airframeaerodesigns.com & Mention Job designation as subject of the mail.

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