Ans: 33 years.
2. Find the values of each of the alphabets.
N O O N
S O O N
+ M O O N
----------
J U N E
Ans:
Ans: 33 years.
Ans:
a. interaction with the file manager.
b. integrity enforcement.
c. security enforcement.
d. backup and recovery.
e. concurrency control.
int i=_l_abc(10);
printf("%d\n",--i);
return(i++);
9
int x;
int y;
pp=&origin;
printf("origin is(%d%d)\n",(*pp).x,(*pp).y);
printf("origin is (%d%d)\n",pp->x,pp->y);
origin is(0,0)
origin is(0,0)
Page output caching adds the response of page to cache object. Later when page is requested page is displayed from cache rather than creating the page object and displaying it. Page output caching is good if the site is fairly static.
int k=1;
printf("%d==1 is ""%s",k,k==1?"TRUE":"FALSE");
1==1 is TRUE