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 |
Write a program to compute the following 1!+2!+...n!
Explain how do you use a pointer to a function?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
Is c a great language, or what?
Where are some collections of useful code fragments and examples?
What is the use of getch ()?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
main() { int i=400,j=300; printf("%d..%d"); }
What do you mean by scope of a variable in c?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
can we implement multi-threads in c.