Skip to main content

Writng a Resume- For Web Developer

Web Developer Resume
        
         Resume or CV is your presenter in job interview and placement scenario, therefor it should be designed and written neatly so that it should present you, your skills, your qualities, and it makes the interviewer to judge you,
 Here are some important points you should consider in your Resume/ CV

1. Contact Information: First of all your web developer resume should have your contact Information which should be placed at the top with your contact number and email-id, so that the employer can contact you.
For example:
Contact Information:
  1. Full Name
  2. Complete  Address
  3. Contact Number
  4. Email id
2. Objective: This section is the most important section of your resume. This section includes a brief statement that why you want to join the company for the desired position, your goals and how can you benefits the company.

3. Professional Details and Experience: This section includes your achievements and experience in your field of interest. You should highlight you past achievements, best skills and projects in which you have worked.
  1. Mention the companies in which you have worked
  2. Your past achievements
4. Software Skills: Mention your knowledge in software field and the language in which you are proficient and worked on. List the specific languages.

For example:
  1. JDBC
  2. ODBC
  3. ASP.NET
  4. PHP
 5. Web Skills: Give the details of the web designing skills which you pursue and worked on.
For example –
  1. Adobe Photoshop
  2.  HTML
  3.  Graphic and web designing software.
6.  Academic Details: This section includes you academic qualification like your bachelor and master degree, your marks, the college which you attended, location of your college
  1. Your  degree and marks
  2. College you have attended
  3. Location of your college
  4. Any other certifications and licenses
7. Key Traits: Mention your specialities and capabilities like
  1.  Working under pressure
  2.  Extensive experience of dealing with clients
  3. Managing skills
  4. Working in team
8. Interests: Include your hobbies and interests. You can mention your interest related to the job and apart from it. For example – photography, travelling, gaming, movies, music, etc.

9. References: Don’t mention the references directly. You can write references available on request.
Means don't write the reference on your resume unless you have told to write

Share with your friend and don't forget to comment............

Comments

Popular posts from this blog

CIVIL SERVICES' (I.A.S.) EXAMINATION

The Union Public Service Commission (U.P.S.C.)  conducts Civil Services' Examination once a year in two stages. The Preliminary Examination (Objective Type) for selection of candidates for the Main Examination is held in the month of May. The Civil Services Main Examination  is held in the months of October/November. Blank application forms and other particulars are published in the Employment News, generally in the month of December. The last date for the submission of applications to the Secretary, Union Public Service Commission, Dholpur House, Shahjahan Road, NewDelhi-11001 1 is usually the last week of January of the year of examination. The Combined Civil Services Examination is conducted for Recruitment to the following Services/Posts: 1. Indian Administrative Service. 2. Indian Foreign Service. 3. Indian Police Service. 4. Indian P & T Accounts & Finance Service, Group 'A'. 5. Indian Audit and Accounts Service, Group 'A'. 6. Indian Customs and Centr...

Predict the output or error(s) for the following:

1 . void main(){ int const * p=5; printf("%d",++(*p)); } Answer: Compiler error: Cannot modify a constant value. Explanation: p is a pointer to a "constant integer". But we tried tochange the value of the "constant integer". 2. main() {  char s[ ]="man"; int i;  for(i=0;s[ i ];i++) printf("\n%c%c%c%c",s[i],*(s+i),*(i+s),i[s]); } Answer: mmmm aaaa nnnn Explanation: s[i], *(i+s), *(s+i), i[s] are all different ways of expressing the same idea. Generally array name is the base address for that array. Here s is the base address. i is the index number/displacement from the base address. So, indirecting it with * is same as s[i]. i[s] may be surprising. But in the case of C it is same as s[i]. 3 . main(){  float me = 1.1;  double you = 1.1;  if(me==you) printf("I love U"); else printf("I hate U"); } Answer: I hate U Explanation : For floating point numbers (float, double, long double) ...

How do I "get" a null pointer in my programs?

Answer : According to the language definition, a constant 0 in a pointer context is converted into a null pointer at compile time. That is, in an initialization, assignment, or comparison when one side is a variable or expression of pointer type, the compiler can tell that a constant 0 on the other side requests a null pointer, and generate the correctly-typed null pointer value. Therefore, the following fragments are perfectly legal: char *p = 0; if(p != 0) However, an argument being passed to a function is not necessarily recognizable as a pointer context, and the compiler may not be able to tell that an unadorned 0 "means" a null pointer. For instance, the Unix system call "execl" takes a variable-length, null-pointer-terminated list of character pointer arguments. To generate a null pointer in a function call context, an explicit cast is typically required: execl("/bin/sh", "sh", "-c", "ls", (char *)0); If the (c...