Skip to main content

Infosys hiring 2014 Freshers across India through referral program

Company: Infosys
Infosys hiring freshers 2014
Eligibility Criteria:

  • BE / B.Tech / ME / M.Tech in any discipline (CSE/ IT/ Electronics / ECE / EEE branches will be preferred)
  • MCA / MSc (Computer Science / Electronics / Mathematics / Physics / Statistics / IT / Information Science)
  • Consistently excellent academic track record
  • Graduates from the year 2014 only are eligible to apply
  • Candidates should not have participated in any selection process with Infosys in the last 9 months
To get referred, Please make sure all the fields below are required
Full Name:
Mobile number:
Mail ID:
Date of Birth:
X Std %:
XII Std %:
Diploma - % or CGPA :
Graduating state:

Graduation - % or CGPA :
Graduating state:
Year of passing:
Specialization/Branch:

Post Graduation (if applicable) -
% or CGPA :
Graduating state:
Year of passing:
Specialization/Branch:

  PreferredTest Location:

Send email with above details to Pullareddy_S@infosys.com
Mark a copy Cc: freshersmania@gmail.com

Mention Infosys fresher referral : your name in subject

Resume is not required

Website: www.infosys.com

Comments

Popular posts from this blog

List of software companies in Chennai

List of software companies in Chennai India's Information technology is an industry consisting of IT services and business process outsourcing(BPO). In india information technology is playing an important role, IT sector in India is generating more than 3 million employment. IT & ITeS industry in India has grown enormously. Indian Information Technology has made a mark in the world. Many MNC's are started branches in Indian cities like Bangalore, Chennai, Delhi etc,. The below table shows you list of software companies in Chennai. 4i Apps Solutions Pvt Ltd http://www.4iapps.com Abra Technologies http://www.abratechnologies.com Accel Frontline Ltd http://www.accelfrontline.in Adrenalin eSystems Ltd http://www.myadrenalin.com Akmin Technologies Pvt Ltd http://www.akmin.com American Megatrends India Pvt Ltd http://www.amiindia.co.in Anantara Solutions Pvt Ltd http://www.anantsol.com Arrowpoint Technologies Pvt Ltd http://www.arrowpointtechn...

How CSS Style Sheets are Working ?

Without HTML it wont work. We can use Cascading Style Sheets in HTML document for interactivity, coloring, aligning contents in HTML pages and styling. It’s easy: 1. Start to write a HTML document(using tables or div tags). 2. Assign class or id to html elements 3. Write Style rules for the html elements, how you would like to display the perticular elements. 4. Attach the style sheet to the html document. When the browser displays the document, it follows your styles for rendering elements. How is it Please comment

How to use HTML textbox, buttons, checkbox and radio buttons ?

HTML is easy to learn here we are going to create textbox, buttons, checkbox and radio buttons for beginers. In Freshers Blog we gave many example for html programs. Generally textbox, buttons, checkboxs and radio buttons these components will help you to create interactive registration form. Example for textboxs, checkboxs bellow, <html>   <head>     <title>Welcome to Fresher Blog</title>     </head>   <body>     <input type="text" name="text1" ></input>     <input type="checkbox" name="checkbox1">Checkbox 1</input>     <input type="radio" value="Radio">Radio 1</input>     <input type="submit" value="Freshersblog"></input>   </body> </html> The above example beginners can learn html more quickly and easily. Thanks.