Blogroll
Home | | Walkins | | BankJobs | | GovtJobs | | Downloads | | Technology | | Sports | | News | | FilmNews | | Notifications | |
Friday, March 2, 2012
The Correct Time to Drink Water ... is Very Important !!!
From A Cardiac Specialist!
Drinking water at certain time maximizes its effectiveness on the body :
2 glasses of water after waking up - helps activate internal organs
1 glass of water 30 minutes before a meal - helps digestion
1 glass of water before taking a bath - helps lower blood pressure
1 glass of water before going to bed - avoids stroke or heart attack
How to Remove Recent History Lists In Ubuntu 11.10
If
you are using Ubuntu 11.04 or newer, you may have noticed that there is
no longer an easy way to clear your recently opened items. They could
have chosen to do this for different reasons like accessibility or
convenience. However, there are some people who simply don’t want their
recently opened files to be listed anywhere for whatever reason. Today, I
have a couple of ways to do that for you.
To do this, open gedit and use the following commands to create the script:
This is very simple and removes the recently used items from most
GTK-based programs. If you want to go another step and remove thumbnails
as well, that’s just one line of code away. Just add:
Once you have that done, it should look like this:
Now, just save the file as something like clearhistory.sh. The .sh extension signifies that it is a shell script. To make it executable, right-click on the file and open the “Properties” window. In the Permissions tab, check to box next to where it says “Allow executing file as program“.
Click “Close”, and you’re done.
TIP: You can show/hide hidden folders like these by pressing CTRL+H in Nautilus.
To create a menu entry for it, open your applications menu and find the Main Menu program.
Click on the Category or menu folder you want it to be in on the left, click New Entry and fill in the information. It can be ran either as an application or from the terminal. You can choose this from the first drop-down menu. It does the same thing either way, except you will see a terminal window flash if you select Application in Terminal. You can also give it an icon by clicking on the launcher icon in the upper-left corner of the window.
Now, type in the path to where you put the file. If it is located somewhere in your home folder, you can start the path with “~” like ~/.MyScripts/clearhistory.sh. You can also add a comment to the launcher so you can remember exactly what it does. The comment is displayed as a tooltip where it applies. When you are finished, it should look something like this:
Click OK to close and save the new menu item, and you can close the menu editor. Now, it will be available to you in the application menu. That means you can also add it to your favorites if you want it to be even easier to get to.
Another thing to note is that this will only work for the current user. If you have multiple user accounts you want to do this with, you would have to place the file and menu entry in the same way in any other accounts you want it available in. Or, you can have it done automatically at shutdown, which can easily clear the history system-wide.
This will open gedit as root so you can save the file to the system directory. You can also name the file something other than clearallhistory.sh
if you like, but remember to keep the .sh extension. You can copy the
code from the original script and change it from there by changing ~/ to /home/*/ like this:
The asterisk (*) is used as a wildcard, so it will follow all paths in the /home/ folder to remove the history files. Once you have the code in place, save and close.
Now, you need to open the terminal to do the rest of this part. First, you need to make the script executable. Since it’s in the system directory, you can’t do it as a standard user, so that is why the terminal is being used here. Type the command:
This will set the script as executable and you can continue. Now you
need to link it to the proper places by using these commands:
This puts a link to the file in the folders of things that are
automatically ran on shutdown and restart. You will notice that in the
rc0.d and rc6.d folders, the file name
starts with “S10″. This is because the scripts in this folder are ran
in order of their filenames. The lower the number, the earlier it is
ran. By default, Ubuntu ships with scripts starting at S20 in these folders.
If you decide to edit this script in the future, you will only need to do so to /etc/init.d/clearallhistory.sh because the other two locations are only linked to this one.
This should be repeated for every command you want ran on each account you want it ran on.
The Script
Using a Bash script is the easiest way to clear your history. You can have it do nearly anything you could want. Since the point is to clear your recent items, we’ll make a script that will delete the files.To do this, open gedit and use the following commands to create the script:
#!/bin/bash ## Clear recently accessed files rm -f ~/.recently-used.xbel rm -f ~/.recently-used.xbel.* rm -f ~/.local/share/recently-used.xbel rm -f ~/.local/share/recently-used.xbel.*
rm -rf ~/.thumbnails/*
Now, just save the file as something like clearhistory.sh. The .sh extension signifies that it is a shell script. To make it executable, right-click on the file and open the “Properties” window. In the Permissions tab, check to box next to where it says “Allow executing file as program“.
Click “Close”, and you’re done.
Placing The Script
If you only want this available to you, on demand, you can either keep it as a file or put the file somewhere safe and keep it as a menu entry. If you want to keep the script itself hidden, create a hidden folder in your home folder like .MyScripts. Be sure to start the folder name with a period to make it hidden by default. Put the file in there.TIP: You can show/hide hidden folders like these by pressing CTRL+H in Nautilus.
To create a menu entry for it, open your applications menu and find the Main Menu program.
Click on the Category or menu folder you want it to be in on the left, click New Entry and fill in the information. It can be ran either as an application or from the terminal. You can choose this from the first drop-down menu. It does the same thing either way, except you will see a terminal window flash if you select Application in Terminal. You can also give it an icon by clicking on the launcher icon in the upper-left corner of the window.
Now, type in the path to where you put the file. If it is located somewhere in your home folder, you can start the path with “~” like ~/.MyScripts/clearhistory.sh. You can also add a comment to the launcher so you can remember exactly what it does. The comment is displayed as a tooltip where it applies. When you are finished, it should look something like this:
Click OK to close and save the new menu item, and you can close the menu editor. Now, it will be available to you in the application menu. That means you can also add it to your favorites if you want it to be even easier to get to.
Automatically Clear Your History
If you would rather have your history items cleared automatically, place the script in ~/.config/autostart. Everything in this folder will run automatically every time you login. This takes the effort out of the process. However, if you only put it here, it will not be cleared in the middle of any session, so if you want to still be able to do it manually, you can have the menu entry point to the script in the autostart folder.Another thing to note is that this will only work for the current user. If you have multiple user accounts you want to do this with, you would have to place the file and menu entry in the same way in any other accounts you want it available in. Or, you can have it done automatically at shutdown, which can easily clear the history system-wide.
System-wide On Shutdown
This part is a little more involved, but it can also simplify the process if you want to use it on multiple accounts. To start, open the Run command by pressing ALT+F2 and type:gksudo gedit /etc/init.d/clearallhistory.sh
#!/bin/bash ## Clear recently accessed files and thumbnails rm -f /home/*/.recently-used.xbel rm -f /home/*/.recently-used.xbel.* rm -f /home/*/.local/share/recently-used.xbel rm -f /home/*/.local/share/recently-used.xbel.* rm -rf /home/*/.thumbnails/*
Now, you need to open the terminal to do the rest of this part. First, you need to make the script executable. Since it’s in the system directory, you can’t do it as a standard user, so that is why the terminal is being used here. Type the command:
sudo chmod +x /etc/init.d/clearallhistory.sh
sudo ln -sf /etc/init.d/clearallhistory.sh /etc/rc0.d/S10clearallhistory.sh sudo ln -sf /etc/init.d/clearallhistory.sh /etc/rc6.d/S10clearallhistory.sh
If you decide to edit this script in the future, you will only need to do so to /etc/init.d/clearallhistory.sh because the other two locations are only linked to this one.
Specific Users On Shutdown
If you don’t want the history cleared from all accounts on shutdown, you will still use the above process, but you will need to change the script a bit. Instead of using the * wildcard, you will need to create a new command for each user you want cleaned. Each command should look something like this:rm -f /home/josh/.recently-used.xbel rm -f /home/amanda/.recently-used.xbel
Mahindra Satyam Walk -In Java Developer 1-2
Job Description
Desired Candidate Profile
Looking for Java Developer. |
Role: | Software Developer | |
Industry Type: | IT-Software/Software Services | |
Functional Area: | IT Software - Application Programming / Maintenance | |
Keywords: | Spring, Hibernate, Web Services, Java |
Education: | UG - Any Graduate, PG - Any PG Course |
• Good communication skills. • Spring frame work, Hibernate & Web Services • Min 1 to 2 years of Java/J2ee live project experience • Should be open for 2yrs bond. • Graduation – B.Sc \ BCA \ should be Post Graduate. • All original documents( from educational docs to employment docs including pay slips ) will be verified before offering. Documents to be carried for the interview Mandatory: • ID card of current Organization • Last 3-months pay slips from the current company • All experience documents from starting / first company to till date company • Highest Education Certificates • Updated CV & two Latest Photographs Walk- in- Interview On 3rd March, 2012 from 9.30 AM Contact Person:: Salla Shravani Venue : Hyderabad |
Urgent Opening of Software(Web) Developer -Experienced-Aspire Consulting Group @ Pune
Company Aspire Consulting Group
Website www.jobsinaspire.com
Eligibility BE/MCA
Experience 1-6 Years
Location Pune
Aspire Consulting Group
Job Role: Software(Web) Developer
Experience-1-6 years
Freshers will not be considered.
Salary-As per industry norms.
Job Description:
1.ERP development, Web Product development.
2.Payment Gateway integration.
3.Appl integration.
4.Data base Management.
Skills- ASP.NET,OOPS,C#,VB.NET,AJAX, Java Script, HTML, CSS,MYSQL SERVER
Additional-PHP,HTML5,OPEN PLATFORM
Salary-35 to 40k for 3 years plus experience
10-15k per month for 1 years experience.
Interview Date-02/03/2012-03/02/2012.
Time-11:00 AM
Or visit for Interview in Aspire Consulting Group,14/15, Ankur Plaza,Warje,Pune-411058.
If interested contact me on 09890481853 or mail on 'admin@jobsinaspire.com'
Contact Person-Rahul Ranjan.
Website www.jobsinaspire.com
Eligibility BE/MCA
Experience 1-6 Years
Location Pune
Aspire Consulting Group
Job Role: Software(Web) Developer
Job Summary:
Job Location-Pune
Eligibility-BE/MCAJob Location-Pune
Experience-1-6 years
Freshers will not be considered.
Salary-As per industry norms.
Job Description:
1.ERP development, Web Product development.
2.Payment Gateway integration.
3.Appl integration.
4.Data base Management.
Skills- ASP.NET,OOPS,C#,VB.NET,AJAX, Java Script, HTML, CSS,MYSQL SERVER
Additional-PHP,HTML5,OPEN PLATFORM
Salary-35 to 40k for 3 years plus experience
10-15k per month for 1 years experience.
Interview Date-02/03/2012-03/02/2012.
Time-11:00 AM
Or visit for Interview in Aspire Consulting Group,14/15,
If interested contact me on 09890481853 or mail on 'admin@jobsinaspire.com'
Contact Person-Rahul Ranjan.
Walk-In @ "VERIZON" : JAVA/J2EEProfessionals : On 3 Mar 2012 @ Hyderabad
Walk-In @ "VERIZON" : JAVA/J2EEProfessionals : On 3 Mar 2012 @ Hyderabad
At Verizon Data Services India, your appointment marks the beginning of enormous opportunities for you. Get involved in the development of new feature sets, evolve cutting edge applications and you could find your career graph rocketing.Everything is possible at one of the leading companies in the world. We employ more than 208,000 people and have an annual turnover of US $71.3 billion. If you are one of those people with the drive and the initiative to succeed, you will have lots to do at Verizon, in an environment that rewards talent.
(Experienced) Walk-In : JAVA/J2EE Professionals @ Hyderabad
Job Position : JAVA/J2EE Professional
Job Designation : Software Developer
Job Category : IT / Software
Walk-In Location : Hyderabad, Andhra Pradesh
Job Location : Hyderabad, Andhra Pradesh
Desired Qualification : B.Tech / B.E / M.Sc / MCA / M.Tech
Desired Experience : 2 to 6 Years (Mandatory)
Mandatory Skills : JAVA, J2EE
Job Description :
• Looking for Java, J2EE Professionals
Please Carry (mandatory) :
• Updated Resume Copy
• Photo ID proof
• Latest Pay Slips
Walk-In Date : On 3rd March 2012 (Saturday) : 9.15 AM to 12 Noon
Walk-In Venue :
Verizon Data Services India
4th Floor, Titus Block, Mindspace,
Hi Tec City, Madhapur,
Hyderabad 500081
At Verizon Data Services India, your appointment marks the beginning of enormous opportunities for you. Get involved in the development of new feature sets, evolve cutting edge applications and you could find your career graph rocketing.Everything is possible at one of the leading companies in the world. We employ more than 208,000 people and have an annual turnover of US $71.3 billion. If you are one of those people with the drive and the initiative to succeed, you will have lots to do at Verizon, in an environment that rewards talent.
(Experienced) Walk-In : JAVA/J2EE Professionals @ Hyderabad
Job Position : JAVA/J2EE Professional
Job Designation : Software Developer
Job Category : IT / Software
Walk-In Location : Hyderabad, Andhra Pradesh
Job Location : Hyderabad, Andhra Pradesh
Desired Qualification : B.Tech / B.E / M.Sc / MCA / M.Tech
Desired Experience : 2 to 6 Years (Mandatory)
Mandatory Skills : JAVA, J2EE
Job Description :
• Looking for Java, J2EE Professionals
Please Carry (mandatory) :
• Updated Resume Copy
• Photo ID proof
• Latest Pay Slips
Walk-In Date : On 3rd March 2012 (Saturday) : 9.15 AM to 12 Noon
Walk-In Venue :
Verizon Data Services India
4th Floor, Titus Block, Mindspace,
Hi Tec City, Madhapur,
Hyderabad 500081
Off Campus Recruitment Drive For B.Tech / MCA -2012,2011,2010,2009,2008 Passouts on 3rd March 2012 @ HYD
Off Campus Recruitment Drive For B.Tech / MCA -2012,2011,2010,2009,2008 Passouts on 3rd March 2012 @ HYD
Name of company: ADHITYA SOFTWARE SOLUTIONS
Job title : Software Trainee
Annual package (ctc) : 1.2 Lacks pa (After Training Salary will hike 1.8L)
Documents for Interview : Two Resumes & Two Photo graph
ELIGIBILITY:
B.Tech (CSE/ECE/EEE/IT/ME) Present Final year (2008 - 2012Batch) MCA Present Final year (2009 - 2012 Batch), 2011 & 2010 pass outs.
No percentage Criteria.
Venue:
GEETANJALI INSTITUTE OF SCIENCE & TECHNOLOGY
Aziz Nagar (V), Moinabad (M), R.R Dist
Date & Time : 3rd March 2012 (9 AM)
The registration process starts from 28/02/2012 at 09:00Am ends on 02/03/2012 by 03:00Pm
THE SELECTION PROCESS WOULD BE
1. Written Test
2. Group Discussion
3. Technical& HR
Registration Fee : Rs 150 /-
The Principals & Tpo’s are requested to inform your Final Year students (i.e. 2012 batch students) and 2011&2010 batch students to participate in this off campus recruitment drive .
The college TPO's may take the registration on behalf of college and submit it on or before 02/03/2012 at our college campus. REGISTRATION FORM
For details Contact
Mr Srikanth (9505364812)
Mr Joshi ( 9652304509)
Mr Nageshwar ( 9494686763)
For more details visit the below URL
Download Document-1
Download Document-2
The college TPO's may take the registration on behalf of college and submit it on or before 02/03/2012 at our college campus. REGISTRATION FORM
For details Contact
Mr Srikanth (9505364812)
Mr Joshi ( 9652304509)
Mr Nageshwar ( 9494686763)
For more details visit the below URL
Download Document-1
Download Document-2
Freshers Recruitment For Technical Trainee @ “Andromart Technologies” Noida
Name : Andromart Technologies Pvt. Ltd.
Website : www.andromart.in
Job Details :
Education : BE/B.Tech(CS,IT,ECE)
Experience : Freshers
Location : Noida
Job Description :
Technical Trainee
Android Apps Developers (we provide technical training/summer internship then we will hire as a regular employee.
Skills : Champ in oops programing, Excellent communication skill in US English
Contact Details :
Name: Mr.Jaya Singh
Tel : +91-8744059568Send Your Resume To Email : hr@andromart.in
Tree Infotech Hiring: Software Trainee @ Delhi
Company Tree Infotech
Website www.treeinfotech.com
Eligibility B.Tech/B.E/MCA/MSc/BCA/ BSc
Experience 0-1 Year
Location Delhi
Tree Infotech
Job Role: Software Trainee
Contact Us:
Mr.Vikas Mishra
Forward Your Resume: info@treeinfotech.com
Contact Number: 9654833899,26681047
Website www.treeinfotech.com
Eligibility B.Tech/B.E/MCA/MSc/BCA/
Experience 0-1 Year
Location Delhi
Tree Infotech
Job Role: Software Trainee
Job Summary:
• B.Tech/B.E/MCA/MSc/BCA/BSc (IT and CS) (55% minimum criteria).
• Excellent analytical skills.
• Good programming language knowledge.
• Good algorithms, data structures .
• SQL knowledge will be an added advantage
• Must have excellent communication & inter-personal skills
Qualification : B.Tech/B.E/MCA/MSc/BCA/BSc (IT and CS)• B.Tech/B.E/MCA/MSc/BCA/BSc (IT and CS) (55% minimum criteria).
• Excellent analytical skills.
• Good programming language knowledge.
• Good algorithms, data structures .
• SQL knowledge will be an added advantage
• Must have excellent communication & inter-personal skills
Contact Us:
Mr.Vikas Mishra
Forward Your Resume: info@treeinfotech.com
Contact Number: 9654833899,26681047
NIHAR INFO GLOBAL: JAVA, J2EE DEVELOPER HIRING | ORISSA | FEBRUARY 2012
Nihar Info Global Ltd. is looking for Engineering passouts or MCA passouts from Computer Related field with working skills in Java/J2EE for the software development work in the company.
Post Name: Software Engineer
Job Location: Paradeep Port Orissa
Experience: 0 Years
Job Description:
Selected Candidates will perform the software development work in the company for its clients using Java/J2EE technology. Candidates applying must possess technical knowledge in Core Java/ J2EE segments -JSP, servlets, JDBC etc.
Contact Details:
Executive Name: Simpy
Email: Interested Candidates are required to send their resumes atjobs(at)niharinfo.com.
CGI recruiting freshers through employee referral @ Hyderabad, Bangalore
The Drive will be on 3rd March,2012 in Hyderabad and Bangalore.
Location: Bangalore,Hyderabad
Eligibility Criteria:
As its employee referral ask your employee to refer you http://www.cgi.com/en/ careers/working-at-cgi
against the following job ids :J0212-1414 – Hyderabad; J0212-1413 – Bangalore
Location: Bangalore,Hyderabad
Eligibility Criteria:
- BE, B.Tech, MTech in CSE,IT,ECE,ETC and EEE
- 2011 pass outs only
- Full time degree only
- Tier1 Institution: minimum 60% throughout academic career (10th, 12th & Graduation)
- Tier2 Institution: minimum 60% (10th & 12th) and 65% (Graduation)
- Current placement scenario
- Years of existence
- Current job/placement of alumnus
- Admission process
As its employee referral ask your employee to refer you http://www.cgi.com/en/
against the following job ids :J0212-1414 – Hyderabad; J0212-1413 – Bangalore
Safran recruiting freshers for Trainee Engineer @Bangalore
Location: Bangalore
Eligibility Criteria:
engineering.com
Eligibility Criteria:
- BE (Electrical/Aeronautical)
- Domain Knowledge: Basic aircraft and aircraft systems knowledge.
- Must be very good in reading and understanding the engineering drawings and inputs.
- Ability of read and understand engineering blue prints.
- ATA ispec 2200
- CMM/SB's/ IPL - Technical Authoring.
Opening for Drupal Developer with People10 - Immidiate Joinning
|
||
Dear parishudh, Dear Candidate, Greetings from People10!!! People10 is an agile, business friendly, creative and learning ecosystem We provide high impact solutions focused on client satisfaction and first time right solutions with highest product quality. We offer enriching careers for IT professionals wanting continuous learning and excitement at work. Our technical competencies span across latest open source as well as Microsoft technology platforms. We at People10 are looking for Web Developers. The requirement is as follows. Web developer Skills : Drupal, PHP Experience : 1.5 to 3 years Availability : less than a month. A glimpse about our Work culture: Informal : yes, you can come in your t-shirt :-) Infrastructure : You will get powerful development machines with large screens Office : Open office spaces suitable for agile development and pair programming Creativity : We have idea walls where you can sketch your ideas and designs A quick glimpse of our office here : http://people10.com/blog/2012/ Suitable and interested candidates kindly reply with an updated CV along with following details. Also give references of friends, colleagues or acquaintances who are suitable and might be interested for this opening. Name: Current Company: Current Role: Experience (years): Notice Period: Current CTC: Expected CTC: Reason for joining People10: For further queries please contact the undersigned. Thanks and Regards Shilpa Rao Human Resources-People 10 Direct Line: 080-33420826 Cell: +91-9538546796 E-mail : Shilpa.rao@people10.com Note: This mail is part of mass mail any inconvenience caused is deeply regreted | ||
This mail has been sent by one of the employers (Employer name: People10 Technosoft Private Limited) accessing the services of monsterindia.com and not by Monster. Monster is committed to protecting the privacy of our users and our “Terms of Use” prohibits any misuse including spamming. If you consider the contents of the mails inappropriate or as spam, please forward this mail to spam@monsterindia.com | ||
Double your chances of getting the right job by keeping your resume updated.
Update Resume now |
Walk-in interviews for Aricent Gurgaon - 3rd March
Dear Friends, mention emp id 26648 on the resume:
Aricent is in the process of hiring development professionals for Software Engineer role (2010 pass outs only). Please refer your friends and relatives whose profiles match with the following
requirement to participate in the selection process.
Job Title: Software Engineer
Job Location: Gurgaon
Qualification: B.E / B.Tech / M.Tech / MCA
Experience: 1 - 1.5 years
Skills Required:
* Good in C/ C++ in Linux Environment.
* Good knowledge of Data Structures, Socket programming,
TCP/IP and Shell Scripting.
Candidates meeting the above eligibility criteria can appear for the
selection process as per the below mentioned schedule:
Location: Gurgaon
Date: March 3, 2012 (Saturday)
Registration Time: 9:00 AM
Time for Written test (C/C++): 10:00 AM
Venue : Aricent Group
Plot 17,
Sector 18, Electronic City,
Gurgaon
Contact Person: Priyanka Singhal
Terms and Conditions:
* Only 2010 pass outs are eligible to participate in this drive.
* Only Development positions are available , please do not refer any testing candidates.
* Candidates who have appeared in last 6 months are not eligible.
* Written test will be based on C/C++ language.
* No candidates will be entertained for written test after 10:30 A.M.
* Candidates with short notice period will be preferred.
* Please carry two copies of your updated resume and passport size photographs.
* Freshers and 2011 graduates are not applicable.
* Candidates will be expected to make their own arrangements for travel and accommodation.
* To avail the referral bonus, candidates must mention the referrer's employee ID (26648) at the time of interview.
* All terms and conditions of the Aricent iRefer program will apply.
* All profiles shall undergo a duplication check before being credited to a particular source/employee.
So hurry up & ask your referrals to avail this great opportunity!
TAG || BPO - Chance to WIN an IPAD
Designation
|
Experience
|
Education
|
Skills/Responsibility
|
Work
location |
TAG POC
|
Interview Type/Date
| ||
Process
Executive Data |
0-11 months
|
Graduate / Post Graduate
(Arts & Science Only) |
· Good written and verbal communication skills
|
Chennai/ Hyderabad
|
Sahithi(212424) / Vinaya(323146)
|
Walk-in
| ||
Senior Process Executive Data |
1-3 years
|
Any Graduate /
Post Graduate |
· Prior experience in Claims adjudication and enrollment
|
Chennai/
Hyderabad |
Sahithi(212424) / Vinaya(323146)
|
Walk-in
| ||
Process Specialist Data
|
3- 4 years
|
Any Graduate / Post Graduate
|
· Prior experience in Claims adjudication and enrollment, and meeting project CTQ's, QA Check for Peers
|
Chennai/
Hyderabad |
Sahithi(212424) / Vinaya(323146)
|
Walk-in
| ||
Team Leader
|
4-6 years
|
Any Graduate / Post Graduate
|
· US Healthcare experience, with 12-18 months in a supervisory role
· Should have exposure specifically in claims adjudication and enrollment
· Availability of US Visa is desirable
|
Chennai/
Hyderabad |
Sharanya(184465) / Usha(230636)
|
Walk-in
| ||
Team Manager
|
6- 8 years
|
Any Graduate / Post Graduate
|
· US Healthcare experience, with 18-24 months in a supervisory role having a span of control of at least 10-12 people
· Should have exposure specifically in claims adjudication and enrollment
· Availability of US Visa is desirable
|
Chennai
|
Sharanya(184465) / Usha(230636)
|
Walk-in
| ||
Venue Details:
Time: 10:00am to 1:00pm
Walk-In date: 3rd March 2012 (Saturday), 4th March 2012 (Sunday)
Candidate Checklist:
• Two copies of the resume • A valid photo identity card for security clearance
Eligibility:
• Minimum of 10+2+3/4 years education pattern with no standing arrears • Candidates must possess relieving letters from all previous BPO employers • Willingness to work in night shifts is mandatory
Path to refer:
Please upload relevant profiles on https://cworld.cognizant.com/MyCognizant/Pages/MyReferral.aspx against the following Job Number: "Claims BPO"
Note:
• Candidates who have been interviewed in the last 6 months are not eligible to apply • Candidates must be flexible for night shifts • All resumes will be screened and only shortlisted candidates will be taken through the interview process | ||||||||
Subscribe to:
Posts (Atom)