i hav very low percentage in 12th n BSCwhich is around
50.......coz it was just imposed on me 2 b a science
graduate,nw m doin MCA n hav aggregate 74% ....what shud i
answer if company's HR ask me about dis much low previous
percentage??????
Answers were Sorted based on User's Feedback
Answer / venkat
hello Anonymous.
though You might feel it is a tough question to answer but
the fact is that it is not.
1)first of all you should make yourself comfortable with
the fact you have less percentage and make peace with
it,rather than thinking reasons why you have less,blamimg
someone who pushed you into field ...
2)when you are answering an HR guy,he would see how
confident you are..
3)you shouldnt feel gulty or give him reasons that makes
him feel you dont deserve to be here.
ill give a simple idea.you have to make the answer by your-
self..
IDEA :health factor:- your health was not supporting you to
go ahead with the academics,and at a certain point of time
you thought to quit studies.but..took it as a
challenge,thought of attempting the exams instead of
quitting.and now you are very happy that you got through
the exams,and also with the result.after all this ,you have
learnt to face a challenge no matter what the stopping
constraints are, rather than just quitting.and that you
started beleiving
"winners never quit,quitters never win"..
and you havent looked back after then,(your MCA percentage
is an example that you are flying high with beautiful
colors)
change you attitude..see positive things even in a bad
situation,you would definitely succeed.all the very best.
| Is This Answer Correct ? | 53 Yes | 3 No |
Answer / ramakrishna yechuri
Just tell that u r having financial problems at that u r
not able to concentrate much as u r working partime to over
come your financial crisis.
Every time u say truth things doesnt work,
some time u have to be fake like this.
| Is This Answer Correct ? | 22 Yes | 10 No |
Answer / hana
First tell me is this ur's own marks in MCA ur having.or by
chit u got it.
| Is This Answer Correct ? | 5 Yes | 27 No |
What is the difference between an object and a class?
Why is polymorphism needed?
Can bst contain duplicates?
How do you define social class?
#include <stdio.h> #include <alloc.h> #include <stdlib.h> #include <conio.h> void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.
Child cObj = new Parent() Wahts the output ?
What is friend function?
wht is ditch
What is difference between pop and oop?
What are the fields of vtable
Can abstract class have normal methods?
How many types of access specifier in c# and vb.net?