Skip to main content

First Things First -- Preparing a Good Resume

As the title says first things first, it’s very important to have good and attractive resume to get an interview call or to get shortlisted. It is always advised to start writing your own resume from scratch instead of copying/following someone else's content or template. So here are some points you should keep in mind before start writing your resume.
  • Most of the times your resume will be first reviewed and shortlisted by HR officers, who rarely have technical knowledge, they just look for some keywords provided by the technical manager. Keywords like Verilog, Tools names, years of experience, etc.
  • The reviewer usually takes less than 5 minutes (or 3 minutes) to go through your resume, so make it concise.
  • Resume should not (or never) be greater than two pages. Don't try to act smart by using small/tiny font sizes.
  • First page should present your best qualities. It’s not like you start low and finish high, in resume you have to always start HIGH.
  • Don't make a fancy or colourful resume, keep it strictly professional, use formal fonts like Verdana, Time New Roman, etc. Importantly, maintain proper alignment (not zigzag).
  • Contact details: phone number and personal email-id are sufficient. Write them in the first page of the resume - after the name or in the header (top right corner).

First Page
: Name, Summary, Skills, Work Experience, Education

Name: Write your full name.

Summary: First page should present your best qualities. Start with a summary of your profile which should give an idea about your number of years of work experience, the key skills you possess and the type of job you are looking for. Summary is usually 2-3 lines long. Use simple language, no need to be bombastic.

Skills include programming languages or HDLs, Technologies known, familiar Tools, etc. If you have a very basic knowledge in something say VHDL, then it is recommended not to mention it. If you think it's really helps to include it then you may write something in brackets like "VHDL (beginner)". I have seen many people writing this: "Operating systems: DOS, Windows 98/2000/XP, Linux", mentioning OS in resume has a wrong understanding by many. It doesn't mean that you used that particular OS, it means that you know "how that particular OS works", like its design, properties, merits, limitations, uses etc. If you just know how to create/delete a file or how to use some commands on OS, then don't mention it.

Work Experience: For each company you worked in (including current company), mention your designation, company name, location and period. You can include any internship(s) you did, just say "summer intern" or similar thing as the designation. Always write the list in chronological order from latest to oldest.

Education: Mention two or three latest levels of education you attended like "Masters and Bachelors" or "Masters, Bachelors and Class XII" or etc. As your work experience keeps increasing, the significance of this section keeps coming down. A fresher or less than 2 years experienced candidate will definitely place this section in first page.

If you still have some space left, then write about your publications. If you don't have any research papers then start writing about your projects.


Second Page
: Projects, Honors/Achievements, Personal information,

Projects: List 3-5 best projects you did, in chronological order. Give title, location, period, Technologies used and abstract. Restrict abstract to 4 (or may be 5 if you have space) lines. Don't write everything about the project in resume, so that the interviewer may ask you some questions about it, which by the way should be an advantage. As you expect this scenario, you will prepare and will feel confident and comfortable in the interview. Most likely you will be able to give nice explanation and impress the interviewer.

Honors/Achievements: Enumerate all the honors like scholarships, awards, prizes etc.

Personal information: Contact information, Languages known, etc.

This is a general way of writing a resume, there is no hard and fast rule/template that you should follow the one given above. One always has the liberty to prepare a resume as he/she likes it. But once you are done check whether you will shortlist your own resume if you are the person who is reviewing it!

Last but the not the least, always perform a word to word spell check manually. Don't trust MS-Word or some other spell check software. Also get it reviewed by your friends and colleagues.

Comments

anonymous said…
This is a reality, In current time MBA is the most esteemed program in look at of some other program. A MBA understudies can get the Management strategies in training time and after MBA he will get the best position in organization and snap to investigate to discover great data.if you a
mant studend how to read read the article So from my sake MBA is the most ideal approach to accomplish your objectives and secure your future.
Biswabhusan said…
Thanks to Admin for Sharing such useful Information. I really like your Blog. Addition to your Story here I am Contributing 1 more Similar Story How to write a Good CV? – Resume Tips for Freshers.
Thank you for sharing this.
Resume is the only thing that can grab you an interview. Newsgovtjobsalert helps to know that the first step to crack an interview is to draft a resume that is well written, expresses your knowledge and skills in front of the recruiter and how they can be suitable for the organisation.

Popular posts from this blog

Digital Design Interview Questions - All in 1

1. How do you convert a XOR gate into a buffer and a inverter (Use only one XOR gate for each)? Answer 2. Implement an 2-input AND gate using a 2x1 mux. Answer 3. What is a multiplexer? Answer A multiplexer is a combinational circuit which selects one of many input signals and directs to the only output. 4. What is a ring counter? Answer A ring counter is a type of counter composed of a circular shift register. The output of the last shift register is fed to the input of the first register. For example, in a 4-register counter, with initial register values of 1100, the repeating pattern is: 1100, 0110, 0011, 1001, 1100, so on. 5. Compare and Contrast Synchronous and Asynchronous reset. Answer Synchronous reset logic will synthesize to smaller flip-flops, particularly if the reset is gated with the logic generating the d-input. But in such a case, the combinational logic gate count grows, so the overall gate count savings may not be that significant. The clock works as a filter for sma

XMR: Cross Module Reference

Cross Module Reference   Cross Module Reference abbreviated as XMR is a very useful concept in Verilog HDL (as well as system Verilog). However it seems to be less known among many users of Verilog. XMR is a mechanism built into Verilog to globally reference (i.e., across the modules) to any nets, tasks, functions etc. Using XMR, one can refer to any object of a module in any other module, irrespective of whether they are present below or above its hierarchy. Hence, a XMR can be a:   Downward reference OR Upward reference   Consider the following hierarchy:     Module A   Net x   Instance P of Module B     Net x   Instance M of Module D   Net x   Instance Q of Module C   Net x   Instance N of Module E    Net x   Instance R of Module B   Net x   Instance M of Module D   Net x     In test bench:   Instance top of Module A   In the above scenario, there is a

Synchronous Reset vs. Asynchronous Reset

Why Reset? A Reset is required to initialize a hardware design for system operation and to force an ASIC into a known state for simulation. A reset simply changes the state of the device/design/ASIC to a user/designer defined state. There are two types of reset, what are they? As you can guess them, they are Synchronous reset and Asynchronous reset. Synchronous Reset A synchronous reset signal will only affect or reset the state of the flip-flop on the active edge of the clock. The reset signal is applied as is any other input to the state machine. Advantages: The advantage to this type of topology is that the reset presented to all functional flip-flops is fully synchronous to the clock and will always meet the reset recovery time. Synchronous reset logic will synthesize to smaller flip-flops, particularly if the reset is gated with the logic generating the d-input. But in such a case, the combinational logic gate count grows, so the overall gate count savings may not be