why r u join this company? give solid resons.
Answers were Sorted based on User's Feedback
Answer / senthilkumar
it's the one and one leading company.team quatination is very super and excellent.the team leader is help to the staff.
encorage the team members.
| Is This Answer Correct ? | 3 Yes | 10 No |
Answer / rajee
Mainly for only one reason of showing my own talents...
| Is This Answer Correct ? | 2 Yes | 18 No |
Answer / pushpendra
i want to be a part of it.As it is my pleasure.
| Is This Answer Correct ? | 11 Yes | 31 No |
Answer / krijesh
bcoz i didn't get any other software company.
| Is This Answer Correct ? | 18 Yes | 58 No |
write a program which will count occurance of a day between two dates.
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Whats s or c mean?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Write a c program to demonstrate character and string constants?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What are the types of assignment statements?
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
What are the application of c?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
Discuss the function of conditional operator, size of operator and comma operator with examples.