Showing posts with label Novell Placement Papers and Interviews. Show all posts
Showing posts with label Novell Placement Papers and Interviews. Show all posts

Tuesday, September 16, 2008

Novell Placement Paper technical C & C++ Questions

Here is am giving an old Novell India Campus Recruitment Test Paper:

Four sections were there in the novell test.
Aptitude 20 questions 
System concepts 20 questions
C programming 15 questions 
Java / Internet

Aptitude Questions Section:
|Samples: Finding speed of boat type, interest rates related, speed of trains, etc.

System Concept questions were on computer science , IT b.tech topics like Operating systems, Data structures, networks, etc.
Some other ones:
Bankers algorithm question
DMA 
Berkeley sockets
What do you mean by Cpu timeslice?
A program given in the technical section:
One pointer is given like this: Given is the c language code.
int *(*p[10])(char *)
Explain the variable assignment

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?
1) Error occurs at runtime
2) Unable to compile
3) 2 3
4) 3 2

See other sample c programs, technical interview questions for Novell India and answers by real candidates. You can also refer USA, UK, French, Japanese and Indian IT Giants placement papers for a more global perspective of the recruitment process. Good luck!