Skip to main content

Best tips for writing a resume?


  
Resume

Tips for writing a resume:


  1. Maximum length: 2 pages
  2. Use of borders and colors: No
  3. Start every sentence with an action verb
  4. Include location and duration for each work experience
  5. Focus on achievements and not just responsibilities
  6. Avoid the use of 'I'
  7. Photograph: No
  8. Must have: Address, phone number, professional email id, and DOB
  9. Marketing lingo: No, keep it simple and straight forward
  10. Abbreviations: No
  11. Objective: Not required; start with a summary. The objective should be evident
  12. Strengths: Not required
  13. Hobbies: Not required
  14. References upon request: not required

Comments

Post a Comment

Popular posts from this blog

Java RoadMap

 

What is Amazon Web Services (AWS)?

 Amazon Web Services Amazon Web Services is a cloud computing platform provided by Amazon. The AWS offers all three service models such as Software as a Service (SaaS), Infrastructure as a Service (IAAS), and Platform as a Service (PaaS). There are more services which comprise the Amazon Web Services including Amazon Elastic Compute Cloud (EC2) which provides virtual servers, Amazon Simple Storage Service (S3) which provides scalable storage for backups, analytics. Then there are other services such as Amazon relational database management system, DynamoDB, AWS Migration hub, and more. AWS provides services in almost every category from mobile development to data analytics. Benefits of using Amazon Web Services: AWS gives access to organizations to use programming models , database and operating system. It provides a cost effective service in which you only have to pay for what you use. Applications can be deployed in multiple regions with just a few clicks. ...

What is Java Unit testing, and how do I learn it...

What is Java Unit testing, and how do I learn it... Java Unit testing is when you create small tests to verify that small bits of your code are working as “units.” Typically you write these tests in Java itself. In each test, you might get the system into a certain state, then you interact with the system to exercise the behavior you want to test. You finally verify whether or not the system did what you expected. A primary goal is to reduce the number of defects that you integrate into the rest of the source base. You’ll find numerous tutorial articles if you search. Most people use JUnit, a simple tool that you’ll find in Eclipse or IDEA.