why r u join this company? give solid resons.
Answers were Sorted based on User's Feedback
Answer / harrie007
To pursue a dynamic and challenging career with your
esteemed organization of , it will give me value addition
to my career as well as will also offer opportunity to
enhance my professional skills.
| Is This Answer Correct ? | 30 Yes | 2 No |
Answer / kaberi
bcoz i wanna learn somethig i course of my service with
self satisfaction and this company is tthe best to give me
that opertunity
| Is This Answer Correct ? | 26 Yes | 1 No |
Answer / s
tell related to R&D of the company, new learning , the
culture,the policy.
| Is This Answer Correct ? | 18 Yes | 9 No |
Answer / manish gupta
because.i am the only one person who lead your compony at
that position which it wants because i know my ability and i
know what to do for making you best among the top leading
software companies ..........
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / tanuz
i consider my self as with good ideas,and creativity,and i
think u r company is one where i my ideas and
creativity,and if i will join in u r company i will able to
give the concrete shape to my ideas.
| Is This Answer Correct ? | 7 Yes | 8 No |
Answer / vishwnath patil
Bcoz,,,,
i want to strugle in my life & only this company will
gives u how to strugle in ur s/w feilds...............
& also i want to learn with real time problems how to solve
that,how shoud give o/p on ur proper task...
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / tarun
THis is vary biggest company and this company market value
is good and futere is good andsecond think my second
placement is good
| Is This Answer Correct ? | 0 Yes | 5 No |
Answer / chinnu
yes, it is my dream.bcoz of new thing in my life is job,so
| Is This Answer Correct ? | 0 Yes | 6 No |
What are inbuilt functions in c?
program in c to print 1 to 100 without using loop
Is array name a pointer?
input any 4 digit number and find the difference of all the digits?
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 does static variable mean?
code for quick sort?
What is variable declaration and definition in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
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...............
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }