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 |
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What does sizeof int return?
How to swap 3 numbers without using 4th variable?
The operation of a stair case switch best explains the a) or operation b) and operation c)exclusive nor operation d)exclusive or operation Which of the following is/are syntactically correct? a) for(); b) for(;); c) for(,); d) for(;;);
1 Answers HCL, Public Service Commission,
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
What is c preprocessor mean?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
What is the difference between fork() and vfork()?
What does static variable mean in c?
How can I read/write structures from/to data files?