Skip to main content

Walk In at Allyzone SoftTech Android Developer Trainee On 24th to 28th July

Company        Allyzone SoftTech Pvt Ltd

Website          www.allyzone.net

Eligibility        B.E./B.TECH/MCA


Experience     Freshers

Location         Lucknow,Uttar Pradesh

Allyzone SoftTech Pvt Ltd

Job Role: Android Developer Trainee

Job Summary :

Knowledge of Android application architecture, UI components & controls, Intents.

Programming/design experience

Exceptional prioritization, time management and follow-through skills

Excellent organizational skills, ability to pan tasks and collaborate with others to achieve goals

Good Knowledge on Notifications, Toast, Locations and Map Apis, working with media, Animation & graphics will be an added advantage.

Qualification : B.E./B.TECH/MCA

Walkin 24/07/12 - 28/07/12, Time 1PM - 6PM

Venue for Walkin :

206 - IInd Floor, Gyan Bhawan

Kapoorthala, Lucknow [UP] 226001

Contact Name : Shahzad Khan, Contact Number : 9415670670

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