Mindtree is conducting offcampus for 2009 passed out BE and MCA. It is a referral opening. You have to forward your resumes through internal employee only. The eligibility criteria is that you must have 65% or more and no standing arrears. The job code against which the resume must be sent is MT8000D. The last date for applying is 7th April, 2010. You can find further details in the image below.
Accenture is going to conduct offcampus for Karnataka students on 27th and 28th March 2010. The eligibility criteria are
- 2009 passed out BE, MCA with 60%
- Only students for recognized universites in Karnataka are eligible for this drive
- Students who have taken the Accenture test in last 6 months are not eligible
Those candidates who are eligible have to go directly to TOCE(The Oxford College of Engineering) and register for this drive on or before 1PM 25th March, 2010. Only first 2500 students who registers with TOCE will be called for written test on 27th March.
Once you get shortlisted for written test you must carry a valid photo id proof, 2 passport size photographs, and photocopy of all your mark statements
Venue:
The Oxford College of Engg.,
Bommanahalli,
Hosur Road,
Bangalore
Update:
The registration in TOCE has been closed as the number of registered candidates reached 2500
Latest question papers download
Hi friends i found these details while surfing the net and I'm posting it here for you. Mcafee is going to hire freshers 2009 passed out. This off campus recruitment is through referral. The event will be held on 27th March, 2010. The last date to send in your resumes is 23 March, 2010. The criteria is as follows
- You must be a 2009 or later passed out candidate.
- Your qualification must be BE, M. Tech [branches-Computer Science, ECE, EEE, IT], MCA and aggregate percentage must be 70%.
- Send your resumes to freshers@mcafee.com along with the excel sheet
- Download the excel sheet from here http://www.mediafire.com/?gyujrt03zzm
- Send the details on or before 23 March
- Short listed candidates will be called for written test
Reference details :
Employee Name : Somasundaram Beerana
E-mail id : Somasundaram_Beerana@McAfee.com
Associate Software Development Engineer
McAfee, Inc.
Direct: +91 (0) 80 6656 1869
I got all these information from net only. I'm not sure how far its true.
You can use the one below(It was posted in chetanas).
Name : Ranjith S Shetty
The shortlisted candidates will be informed through mail. Then you have to attend aptitude test then GD and interview. Once you get selected you have to join within a week. The salary will be 1.65 lakhs per annum and you have to sign a service bond for 2 years with security deposit of 1.5 lakhs. Don't miss Dell's offcampus. The last date to send your resume with filled in excel sheet is 19th March 2010. Start preparing now itself by downloading Dell Placement Papers
Wipro the leading IT company is conducting the WASE program for 2010 passed out freshers. This recruitment of Freshers will be done by conducting Common Entrance test all over india and then the selected candidates will be called for Technical and HR rounds. The eligibility criteria for WASE program is that
- the candidate must be a B.Sc. ( Computer Science/Electronics, Physics, and Mathematics) / BCM / BCA graduate
- Must have secured 60% in 10th, 12th and Graduation till date
- Must have had Mathematics as a subject in 12th
For Wipro Sample Placement Papers visit http://placementpapers.net/helpingroot/tag/company/wipro
Larsen & Toubro Group(L & T) is recruiting freshers passed out in 2010. They are hiring freshers(recruitment) for the designation of Post Graduates Engineering Trainees(PGET). The students passing out in 2010 and having ME/M.Tech in Civil, Mechanical, Electrical & Electronics are eligible for this position. Also they must have first class through out their academics. The functional area will be engineering design and R&D. For more information and L&T Placement Papers visit Placement Papers
Ericsson the global leader in Telecom Solutions has called for freshers offcampus recruitment. It is operating in more than 140 countries and has about 65000 employees. Ericsson India Pvt Ltd is out to recruit Graduate Engineer Trainee(GET) passed out in 2009 from BE, B.Tech Branches with Electronics & Telecom Specialisation. The job loaction will be Delhi/NCR. The selected candidates must work on support,planning on telecom technologies and services in BSS, NSS, VAS, IN, Service Layer, RF transmission. The compensation will be best in the industry. Fro more information and ericsson sample placement papers and pattern visit http://www.ericsson.com. This is a good news to all in 2010 who is searching for a job
- Move to the directory where WAMP Server or PHP is installed using the command prompt. For example C:\wamp\bin\php\php5.3.0\>
- Then run "go-pear.bat" file for complete installation of PEAR
- Edit php.ini file and include the path to pear(include_path = “.;e:\wamp\bin\php\php5.3.0\includes;e:\wamp\bin\php\php5.3.0\PEAR;e:\wamp\bin\php\php5.3.0\PEAR\Mail") and also edit ini file extension and set extension=php_openssl.dll to enable openssl
- ph5.3.0\>pear list (this command will list all the installed pear packages)
- pear download Mail (A zip file will be downloaded)
- pear install Mail
- pear install -a Net_SMTP(-a switch for installing all dependencies)
- Then go to the mail.php file in e:\wamp\bin\php\php5.3.0\PEAR\Mail\mail.php and add this line require_once "e:\wamp\bin\php\php5.3.0\PEAR\Mail.php";(If not added it shows error that class Mail cannot be found )
- A note: If you are using php 5.3 then you might get a problem when installing pear. It will say that the command cannot be found... To overcome this you have to download go-pear.phar file and save in with that name in the php5.3.0 directory
< ?php
include "e:\wamp\bin\php\php5.3.0\PEAR\Mail\mail.php";
$from = "xxx@gmail.com
$to = "yyy@yahoo.co.in
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$host = "ssl://smtp.gmail.com";
$port = "465";
$username = "xxx@gmail.com";
$password = "";// Type your Password Here
$headers = array ('From' => $from,'To' => $to,'Subject' => $subject);
$smtp = Mail::factory('smtp',array ('host' => $host,'port' => $port,'auth' => true,'username' => $username,'password' => $password));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo( $mail->getMessage());
}
echo("Message successfully sent!");
}
?>