Skip to main content

Openings for android developers

Job Description
Freshers reqiured for Android apps developer Position. Web development , Developers are required. Freshers 2011/2012 Batch .To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in
Salary:

INR 1,25,000 - 2,25,000 P.A
Industry:

IT-Software / Software Services
Functional Area:


IT Software - Application Programming, Maintenance
Role Category:

Programming & Design
Role:

Software Developer
Keyskills:

freshers, fresher, Java developer
Desired Candidate Profile
Education:

(UG - B.Tech/B.E.) OR (PG - MCA) OR ( Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required)
BE , MCA Freshers 2011/2012 batch well versed with Android technologies To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in
Company Profile
DCS
http://www.dcsit.in
Dcs is a software company which deals with web development . Company is procuring projects from US and also domestic client. We are into web Engineering and web hosting too.
Contact Details
Recruiter Name:

Rahul Singh
Contact Company:

DCS
Address:

#15/16 3rd Floor Raja Rajeshweri Nivas Vazpayee Nagar. Bommanahalli post Behind HTMT Building BANGALORE,Karnataka,India
Email Address:info@dcsit.in

Telephone:

91-80-25737580

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