Skip to main content

Difference Between a CV and a Resume?

The differences in brief

At first glance, the differences between the two seem slight. Both consist of a structured list of facts that allows you to impart relevant information about your skills and achievements to an employer as quickly and simply as possible.

Although in essence they both serve the same purpose, the main difference between a CV and a resume is that a CV acts as a complete record of your professional history, while a resume is a short, targeted list of transferable skills and accomplishments, intended to show how you can be of specific benefit to the particular company to which you are applying.

As I mentioned earlier, throughout most of the world, the CV is the standard format for job applications. However, in the US, resumes are more common, and CVs are reserved almost completely for jobs in academia or when applying for grants. As a result, many international workers possess both a CV and a resume and choose between them as necessary.

In the following sections, I shall discuss the features of each type of document in more detail, and close with a brief look at how to decide which one is best for you.

Features of a CV
A CV, or Curriculum Vitae, to give it its Latin name, is an account of your entire education and employment history. The term translates as ‘course of life’, and it really is that – a record of your working life so far. It is far more detailed than a resume, from which elements are often excluded if they are considered irrelevant. A CV should include everything you’ve ever done, listed in reverse chronological order, to make it easier to prioritise more recent information. As a result, a CV is longer than a resume, although two pages is the recommended length.

Information in a CV is arranged according to subheadings, to make it easier for the reader to quickly skim through and find the information he or she needs. Remember, your CV is intended to let prospective employers find out about you in the hope that they will offer you a job, so it’s in your interest to make it easy to understand!

The sections of a CV may include the following, although many sections can be moved up or down depending on what information is relevant for the specific job.

1. Profile/Objectives – a short statement, tailored to fit the requirements of the prospective employer;
2. Education/Qualifications – a list of institutions and courses, with grades awarded and dates attended;
3. Skills/Competencies – any skills or achievements that are relevant to the job. You can include most things, but be sensible – there is no need to mention the 10m swimming badge you got when you were six!
4. Career Summary – this should be the most detailed part, it can be moved higher up the document if necessary. Each job should have a short description of the skills you used and your achievements within the role. A few bullet points are sufficient, with more detailed accounts of more recent/relevant positions.

Features of a resume

A resume should be a shorter, more focused account of your relevant skills and achievements. Although the exact length of a resume is open to debate, in general it should not exceed one page in length, and it’s safer to be conventional; after all, you want to get the job. It’s fine to miss things out of a resume to keep the length down; you should only include the things that are most relevant to the position you are targeting. Resumes also often miss out some of the more personal details that CVs include, such as hobbies and interests.

As with CVs, resumes are usually organised into a few essential sections. However, one key difference between a CV and a resume is that resumes are focused on your skills and accomplishments, rather than providing an objective account of your history. As a result, resumes often feature aggrandising language, and tend to be more obviously self-promoting than CVs.

You can afford to be a bit less formal with the structure of a resume than with a CV, and there is a wider scope for creative presentation. That said, there are three main formats that are generally used:

1. Chronological – this is the most common format, and is very similar in organisation to a CV;
2. Functional – your skills/qualifications act as a backbone, around which the rest of the resume is structured;
3. Focused – as above, but with the content organised in relation to the targeted position.

It is often better to stick to one of these tried and tested formats than to attempt to wow an employer with your own unique design. These have a chance of backfiring if your reader doesn’t like them, so why take the risk? The only time I could see the point of designing your own format is if you are entering a creative field, such as design.

Comments

Popular posts from this blog

Automation - Update Naukri Profile Using Selenium

Recently one of my friend came to me with a problem. He is looking out for new job but he feels quite boring to update  his profile on daily basis. As some people says updating profile in the morning gives you more calls as it keeps the newly updated profile on top (Although i don’t know whether naukri works this way or not 😀 ). As i was more interested to solve his problem.  After listening his problem i came to solution that instead of updating it manually lets make this job automatic. And it is quite interesting how we can automate our daily boring task with automation. Another day i came with the solution . And the solution was to make it automatic using selenium (Those who are not aware about selenium do check this link) In short, Selenium is a Testing automation Framework. And it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should) also be automated as well....

OpenCV - Image Filters

Hello Guys, In this tutorial, I will discuss the color map in OpenCV. Color Map is used to show different color temperatures. And this can also be used to generate some cool image filters.  OpenCV comes with thirteen built-in color maps. So in this tutorial, I will show you how to use color maps.  Let’s get started List of Color Maps COLORMAP_AUTUMN COLORMAP_BONE COLORMAP_JET COLORMAP_WINTER COLORMAP_RAINBOW COLORMAP_OCEAN COLORMAP_SUMMER COLORMAP_SPRING COLORMAP_COOL COLORMAP_HSV COLORMAP_PINK COLORMAP_HOT COLORMAP_PARULA To apply color map first we need to convert an image to grayscale. So I will use  img = cv.imread("nature.jpg",cv.IMREAD_GRAYSCALE) If you are not aware of this function then please check my previous tutorial  http://techievaibhav.in/2019/01/10/reading-an-image-using-opencv/ To apply color maps, OpenCV comes with a function called applyColorMap() . This function takes two parameters. Gray Scale image Color Map Autumn Bone Cool Hot HSV Jet Ocean Parula Pink ...

Android - Show A Dialog From Service

In this article, I will be discussing how you can create a dialog from service. As we all know that service in android does not have any UI and it is intended for long-running background tasks. But sometimes it is required to show some information to the user when your app is running in the background. Today I will show you how you can implement this type of functionality in your application. Before starting the tutorial let me tell you about the special permission that we are going to use. Permission AndroidManifest.xml<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> This permission allows the app to use the system level window. AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.app.dialogfromservice"> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> <appl...