why should i select you?
Answers were Sorted based on User's Feedback
Answer / salu
For the development of ur company and for my career
development
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / divakar
i am a person with a never give-up attitude.i am very good
at implementing my ideas effectively.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / maddy
i am very good hardworker i can work for a company at any
situation so ican put my maximum effort to work in ur
company
| Is This Answer Correct ? | 2 Yes | 4 No |
Answer / sridhar
bcoz i have a cabability to celebrate the work well.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / usha
because i have a strong technical skill in C,C++, core JAVA
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / hajara nowsath
I have time management skills and i dedicate myself to do
the given task.i will be flexible in any team.i have a
leadership quality.
If this is ur answer the interviewer will surely ask some
examples for ur leadership quality and time management.So
prepare answers for those questions also. Just give real
time examples.
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / meena
you should select me because i hope i have the capabilities
of completing the tasks given to me perfectly and i promise
you that i will add another feather to the victory crown
of my company with my hard work and knowledge
| Is This Answer Correct ? | 2 Yes | 4 No |
Answer / divakaran
i am a very talented guy and i can share my
ideas,skills,knowledge effectively and i will work hard for
the development of your company
| Is This Answer Correct ? | 1 Yes | 4 No |
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
void main() { int a=1; while(a++<=1) while(a++<=2); }
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
Why we use stdio h in c?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
What is meaning of tree
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
Can u return two values using return keyword? If yes, how? If no, why?
what is structuer?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
Why clrscr is used after variable declaration?