Skip to main content

Auxir Infosolutions Hiring Web, Graphic Designers

Company        Auxir Infosolutions Pvt. Ltd

Website          www.auxir.com

Eligibility        Any Graduation


Experience      0.6-1 Year

Location         Nibm Kondhwa, Pune

Auxir Infosolutions Pvt. Ltd

Job Role: Web Designer / Graphic Designer

Job Summary :
*Strong skills with (Illustrator, Photoshop, Flash / Dream Viewer / In design(Optional) , HTML, HTML5,CSS, CSS3).

*Strong knowledge about Graphic Design (like : iPhone and Android layout Design)

*Strong, collaborative, self-motivated work ethic.

* Knowledge and Experience of Action Script 3.0 (AS 3.0) a plus (Optional).

Qualification : Any Graduation

Address:
Auxir Infosolutions Pvt. Ltd
Pune, India Office
C-1 Building,1st floor, Office No.8, Brahma Estate,
Kondhwa Road, NIBM Chowk
Landmark: Near Jyoti Restuarant
Pune- 411048,
Maharashtra, India

Tel No: 020 41302040, Mob : +91 9890654102

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