Skip to main content

Quick Tips for Cover Letter

 

  • Since there is no Exact format to write a cover letter, Hence you can follow some tips which may increase the impact of your cover letter.

    • Start with Dear Hiring Manager/Team/ Name of Hiring Manager
      • Avoid writing Hi Team
    • Ensure the grammar and spellings are correct
    • Cover letter can be more than 1 page, only if it makes sense to connect else keep it short and crisp 
    • Instead of saying what you want, emphasis more on what you can offer
      • You can go with 80-20 rule if not 100-0, where 20 & 0 is your need
    • Don’t rehash your resume as you are already sending it
    • if the Job is in another location, provide info on why you are moving to another city. Otherwise the employer may think that they might have to bear relocation costs.
      • (eg, As I wanted to move to XYZ city I was looking for )
    • Employment barrier's should not be mentioned in Cover letter till the time an employer is interested in you
    • Not Mandatory but good to include Cover letter when applying through 3rd party agencies as well. Agencies can use it to speak about you using your cover letter
    • Try to send it via email to Hiring manager it will ensure that your details have reached them and not left somewhere in the system




    Picture Credit: Storyset


Comments

Popular posts from this blog

Delete Git/Other Credentials from Windows

 Delete your git credentials from Windows for new repository 1) Search "Credential Manager" on your machine 2) Open "Windows Credentials" from it 3) Under "Generic Credentials" section look for "github/bitbucket" etc. 4) Select drop down and choose Remove credentials Good to go and create Generate new credentials This is very handy when you are changing your remote repository and avoids pushing off data to an incorrect repository and increases security of your git repo.  You can also use the same approach to remove any other saved credentials.  Note: for generating new credentials and adding them please follow the below git hub page SSH Key Generation

Switching between different Node.JS versions

Yes, you can have multiple versions of Node.js installed on your system using **Node Version Manager (NVM)**. you need to install **nvm-windows**. 🔹 Steps to Install and Manage Multiple Node.js Versions on Windows** 1️⃣ Install NVM for Windows Download **NVM for Windows** from official website: 👉 [https://github.com/coreybutler/nvm-windows/releases](https://github.com/coreybutler/nvm-windows/releases) - Install it and restart your computer. 2️⃣ Install Multiple Node.js Versions** - Open **Command Prompt (cmd) or PowerShell** and run: nvm install 18.17.0 # Install Node.js 18 nvm install 22.14.0 # Keep your existing version eg: Node.js 22 List installed versions: nvm list 3️⃣ Switch Between Node.js Versions** nvm use 18.17.0 To switch back to Node.js 22: nvm use 22.14.0 🔹 How to Set a Default Node.js Version** If you always want Node.js 18 to be the default: nvm alias default 18.17.0