Give the difference between monolithic and microlithic kernal:
A. monolithic large
B. microlithic used in embedded systems.
C. none
Latest Answer: session layer (5th) ...
Latest Answer: As per inorder version 41523, Tree structure is : 2 ...
When does a stack member will be initialized?
A. when object is created
B. when object is initialized.
C. does not depend on object.
D. none.
Number of CPU in a multiprocessor is contrasted by
A. RISC nohere of CPU
B. memory
C. both A. and B.
D. None of the above
Give the output of the following program
main()
{char *s;
s="hot java";
strcpy(s,"solarrs java")
}
Give the output of the following program when redirected to a screen what will be printed?
main()
{printf("hot java");
fork()
exit(0);
}
Give the output of the following program when redirected to file what will be printed.
main()
{printf("hot java");
fork()
exit(0);
}
Give the output of the following program
main()
{int ret;
ret=fork();ret=fork();ret=fork();ret=fork();
if(!ret)
printf("sun");
else
printf("solaris");
View page << Previous 1 [2] 3 Next >>

Go Top