Skip to main content

How to write a cover letter

Add the finishing touch to your resume with a cover letter
Once your resume is a finished document, complete with an attractive design and comprehensive content, it’s time to add one last thing…a cover letter. While a resume is the bread and butter of who you are to a potential employer, a cover letter can be the personal touch that makes you stand out from the rest of the crowd.

Second in command
When preparing a cover letter, it’s important to remember that the resume is always the most important part of your application. In fact, most employers read the resume first, and then if they are still interested they will take the time to read your cover letter. So never rely on the cover letter alone to get you in the door–use it instead to give you an edge once your resume has gotten you through the first round.

Get personal
Always write your cover letter to the appropriate contact at the company. “To Whom It May Concern” does not cut it if you are serious about applying for a position. Take the time to find out whom you should send your resume to, and direct your letter to their attention. This gives you a specific contact with whom you can follow-up, and they will know you were interested enough to do some research on the company.

What you have to offer their company
Every cover letter you write should be customized for the specific company who will receive it. It is not enough to simply change names at the top of the letter. Research the company and address their specific needs; more specifically, concentrate on highlighting the benefits you can offer to the company. The cover letter is your chance to interpret the top skills on your resume and discuss why they make you the best candidate for the position.

The next step
At the end of your letter, make it clear that you are actively pursuing a position with the company, and not just sending out your resume to a long list of potential employers. Request an interview, and let the contact know that you will be in touch to further discuss your credentials and the open position if you haven’t heard from them by a certain date.

Final countdown

Once you are ready to send out your resume and cover letter, do a final edit! Mistakes on a cover letter are just as detrimental as they are on a resume. Your letter is an excellent indication of your communication skills, and a great opportunity to display just how well you can express yourself. A cover letter is usually not the first thing an employer reads, but it does have the power to make a more personal, customized pitch for your credentials. Be sure it’s customized for every company that receives it, make it clear that you are active in your pursuit of the job and edit it just as carefully as your resume. The cover letter is your chance to actually discuss your credentials, and serves as the first “conversation” with a potential employer, giving you a better chance of setting up your second conversation—an interview.

Comments

Popular posts from this blog

Login and Registration Example in JSP with Session

Those who want to start with jsp and MySQL, this is an excellent example for themselves. Here you can learn how to insert data to MySQL using JSP. Also you can learn about session handling in jsp. 1 2 3 4 5 6 7 8 9 10 CREATE TABLE `members` (    `id` int (10) unsigned NOT NULL auto_increment,    `first_name` varchar (45) NOT NULL ,    `last_name` varchar (45) NOT NULL ,    `email` varchar (45) NOT NULL ,    `uname` varchar (45) NOT NULL ,    `pass` varchar (45) NOT NULL ,    `regdate` date NOT NULL ,    PRIMARY KEY   (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; index.jsp 1 2 3 4 5 6 ...

Timer funcitons in JavaScript: Reminder Script

Timers are used in web pages and we will discuss how to setup one and how to use one with an example. The function setTimeout() in function is used and here is its general syntax. mytime = setTimeout(expression, msec); mytime  is the identifier used to identify the current timeout function.  expression  is the statement that is to be executed after the specified time has ticked off.  msec  is the duration of time in milliseconds after which the expression will be executed.  You can see by using setTimeout function we can execute any function or object after a set of time. For example if msec is set 5000 then the expression will be executed after 5 seconds or 5000 milliseconds.  We will try one example where we will have four period buttons and each button will set a different time for another function to execute and display a alert button. We will call it as a reminder script and we will get one alert box based on the period button we click...

Binary Addition

/* File Name : BinAdd.java */    import java.util.*; public class BinAdd    {  public static String addBit(String a, String b, String c)  { String r=""; if(a.equals("1") && b.equals("0") || a.equals("0") && b.equals("1")) { if( c.equals("0")) r="1"; else { r="0"; c="1"; } } else if( a.equals("0") && b.equals("0") ) { if(c.equals("0")) r="0"; else r="1"; } else if( a.equals("1") && b.equals("1") ) { if(c.equals("0")){ r="0"; c="1"; } else { r="1"; c="1"; } } return c+r; }   public static String add(String a, String b)   { String r=""; int len=a.length(); String carry="0"; for(int i=len-1;i...

Real time changing Clock showing date and time

We can display a clock which will be showing the local time of the client computer by using JavaScript. Note that this time displayed is taken from user computer and not from the server.  We have seen in our  date object example how to display current date and time   where the current date and time is displayed once. Here we will try to display changing clock or real time change in date and time by using  setTimeout function . This setTimeout function we have used to trigger the time display function in a refresh rate of 1000 mill seconds ( 1 Sec ). This refresh rate can be changed to any other value. By changing the value to 5000 the clock will refresh and show the exact time once in every 5 seconds.  Here is the demo of this script and code is given below that.  Sat Apr 23 2016 08:27:22 GMT+0530 (IST)   Here is the code <html> <head> <title>(Type a title for your page here)</title> <script type="text/javascript...