-->



Hexaware Placement Paper


1.WHat is the full form of SIM ?

2.What is beta testing ?

3.What is the full form of CMM ?

4.What is the full form of OLE ?

5.What is rs232c ?

6.Who invented storage program ?

7.What is GAAP ?

8.What is risc ?

9.What is density of mercury ?

10.What is the ph value of water ?
11. int a==4
sqrt(a);
printf("%d",a);
1.2.0 2. 2 3. 4.0 4. 4
ans :2

12. int x==2
{x==x+2}
printf("%d",x);

13. Find the output

main()

{
int a[]={ 2,4,6,8,10 };

int i;

change(a,5);

for( i = 0; i <= 4; i++)

printf("
%d",a[i]);

}
change( int *b, int n){
int i;
for( i = 0; i < n; i++)
*(b+i) = *(b+i) + 5;
}