|
Written by Pradeep
|
|
Thursday, 07 August 2008 10:53 |
|
Novell Placement Paper There is four section in test. -
Aptitude 20 questions 20 minutes -
 System comcept 20 questions 15 minutes -
C programming 15 questions 20 minutes -
Passage on java/internet 10 min Aptitude -
A problem on time and work ,A and b takes 15 days to completer the work,A takes 30 days so how many days B take? -
A question on compound interest with 5 sub questions,simple if u know the concept. -
A question on finding the speed of boat given the speed of upstream and downstream.
 System Concept ( mainly questions from OS,data structures,networks) -
Berkeley sockets-ans :connection oreiented. -
A question on bankers algorithm -
Complexity of hastable -
What is Cpu timeslice? -
Aquestion on DMA C programming -
One pointer diff is given like this: int *(*p[10])(char *) Explain the variable assignment -
For the following C program void fn(int *a, int *b) { Â Â int *t; Â Â t=a; Â Â a=b; Â Â b=t; Â } main() Â { Â Â int a=2; Â Â int b=3; Â Â fn(&a,&b); Â Â printf("%d,%d", a,b); Â } What is the output? a) Error at runtime b) Compilation error c) 2 3 d) 3 2 -
main() Â { Â Â Â printf("hello"): Â Â Â main(); Â } Â Â what is the output? Â Â ans :stack overflow
|