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

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.

What is singleton design pattern?

Singleton design pattern Singelton Design Pattern.  The singleton design pattern is a software design pattern which ensures that a class of anyone object has only one instance (of computer science). In other words, we can also say that it restricts the instantiation of a class of any object. We require a singleton pattern because it may sometimes happen that we require only one object to coordinate with the action across the system. This concept is also applicable when we have to restrict instantiation over a number of objects. The singleton pattern helps us to solve problems like: Helps to ensure that a class has one instance. Helps to access the sole instance of a class easily. Helps to a class to control its instantiation. Helps to restrict a number of instances of a class. Now, you might be thinking about how to solve such problems. Here are a few key points which might help you: The first key point is to make a class which is responsible by itself fo...

Java RoadMap