What is the difference between CV and Resume ?
Answers were Sorted based on User's Feedback
Answer / ravi
A resume is a one or two page summary of your skills,
experience and education. While a resume is brief and
concise - no more than a page or two, a Curriculum Vitae is
a longer (at least two page) and more detailed synopsis.
A Curriculum Vitae includes a summary of your educational
and academic backgrounds as well as teaching and research
experience, publications, presentations, awards, honors,
affiliations and other details.
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / mchilakala
A Resume is aform which is having one or two page summary
of your skills, and education not experience. ,
a Curriculum Vitae is having more than 2 pages. In which
you can include your skills, educational details and
experience along with project report.
| Is This Answer Correct ? | 0 Yes | 0 No |
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
what is the structure?
Differentiate abs() function from fabs() function.
What is sizeof int?
How can I automatically locate a programs configuration files in the same directory as the executable?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
Can we replace the struct function in tree syntax with a union?
How can you tell whether a program was compiled using c versus c++?
What is NULL pointer?
how to count no of words,characters,lines in a paragraph.
How do I get a null pointer in my programs?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer