Novell Recruitment test conducted on (20/9/04). 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