Post New Ness Technologies Solaris AllOther Interview Questions
Where does the data of a Hive table gets stored?
Is asp.net a language?
Tell me what kind of tests should not be automated?
how is data partitioned before it is sent to the reducer if no custom partitioner is defined in Hadoop?
How to calculate CFM in Compressure or Blower? EX. I hv Blower with 5hp motor.then how to calculate the CFM?
How do you make a grid on microsoft word?
What is the use of LC? How is it useful in export sales?
Explain the components of a test plan?
I want to know about the site where i can do online application for F form. Please suggest site address and procedure.
Explain what the link function is and how it differs from compile?
Can angular applications (ng-app) be nested within each other?
Write the chemical formula for epsom salts?
Define designer? : sap bobi
In real storage usage. By monitor through rmf iii the usage of real storage keep in increasing everyday. Why this happen?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }