why should i select you?
Answers were Sorted based on User's Feedback
Answer / sony
i like to be well organised. I plan my time , effectively&
work well within it. I thrive under pressure & complete my
work within deadline. I m also a good team player . I
contribute well to the dynamic of the team , but work
equally as well as my own.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / rakesh
well i have some experience about working under pressure and under given deadline,i can handle people and make them to give their best,i know how to deal with my clients and colleagues and i am willing to put up my innovative ideas for development in this field.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / yogi
i feel iam efficient for this post as i can implement my
skills and knowledge very effectively. And i have good
learnin g capability.
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / chirag
I can contribut my knowlege with ur company as well as i
feel if u realy want someone who is aggressive towards
hardwork, leadership quality and honest in all, you met the
right person.
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / nilojyoti
ability to do work smartly .... dedication to finish within
schedule ... ability to learn newer technlogies
quickly .... ability to communicate with team memebers and
supriors about the problems and newer ideas to produce
quality work and to make work enviroment more
comfortable... giving values towards the corporate values
and culture of the company.. these are some of the things
that qulaify me for getting hired by you :-))
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / amit paul
I feel i am efficient for the desired post as i was implemented my knowledge & skills to help to achieve the organisational goals of my previous company .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sandeep kumar yadav
Because whatever you will give me i will do on given time, and will always increase the name of your company in the market because your company will be increase in the market then defenetilly my performance will be also increse.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saikat
As I have done secondary research on competitors and my organization,I will focus on my organization's strength point and competitors week point. In such way I shall do my job to achieve my goal as well as my organization goal.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saranya
Hi!
To implement my ideas & skills for the development of
our company.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / saranya
i will work efficiently and hard to develop our company.
| Is This Answer Correct ? | 1 Yes | 2 No |
Whether there can be main inside another main?If so how does it work?
What is hungarian notation? Is it worthwhile?
Tell me when would you use a pointer to a function?
main() { printf("hello"); fork(); }
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
Explain what is the best way to comment out a section of code that contains comments?
How can you print HELLO WORLD without using "semicolon"?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
how to get the starting address of file stored in harddisk through 'C'program.
What is memory leak in c?
Explain what is the benefit of using an enum rather than a #define constant?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.