Honeywell
Honey well came to our college for recruitment....
I belong to the ECE branch...
There were three sections namely..
1. AT (Quans and reasoning)
2. C Test
3. Technical... (Digital electronics,DSP,Control Systems,LIC,Micro processors and controllers).
Section 1:
* I couldnt exactly remember the Reasoning ques...
There was one ques thar had ms.braun,Mr.Allen.. totally six in number..3 of them would smoke.. one prefers silence... It was quite easy..
Another Ques was abt democracts and republicans hav to be selected from two groups of A,B,C,D,E and F,G,H,I.Atleast one has to be an army person and
another an economist...
* The quans was ok... problems based on cisterns,volume.profit and loss, work.... and a couple of ques on Venn Diagram.
Section 2:
Most of them were easy... but there were tougher ones based on files and unions.
Section 3:
There were 3 to 4 ques based on Control System which included one block diagram and a signal flow graph.
The diagram for Type 2 order 5 system.
The ques from LIC were very fundamental like.... the slew rate depends on _______.
The other ques that I remember are
What is FFSK?
A ques on the properties of Darlington Pair.
FFT is due to ______
there were ques on boolean algebra like... the min terms are (2.3.4.5) then the boolean expressions is
_____
expression for Algebraic XNOR is _______
Micro processor and controller ques was quite easy...
the two modes of 8086.
8051 is optimized for ____ bits.
why program counter?...
stack is used for_______

Their pattern is OS : 10
Their pattern is
OS : 10 Questions
C : 10 Questions
C++ : 10 Questions
Java : 10 Questions
OS is compulsory and you can choose any one of these three language. I had
chosen C++.
Here is few question I still remember. please do not go on my answers they
may be incorrect also.
C++ Questions
1) If there is one class template which has one static member variable that static variable will belong to
a) Every instance of class template will share the same copy of static variable
b) Every instance of class template will have its own copy of static variable.
c) Compilation error
d) Don't remember.
2) What is template specialization ???
a) define a new template class for a specific data type.
b)c)d)
3) How we will overload operator *+= such that
obj1 *+= obj2;
implies that
obj1=obj1*(obj1+obj2);
four choice were there last option was d) it is not possible I checked
that option.
4) IN C++ what does the operator overloading means.
a) Giving new meaning to existing C++ operators
b) defining functionality of existing C++ operator for user define objects.
c) defining new operators.
d) don't remember.
5) what is '>>' in C++
a) right shift operator and insertion operator depend upon the use
b) right shift operator and extraction operator depend upon the context use
c) right shift operator and insertion/extraction operator depend upon the use
6) class A
{
int a ,b;
A() : a(0)
{b=0;}
};
if you create obj of this class as A obj;
a) b will be initialized before a
b) a will be initialized before b
c) both will be initialized together
d) none of these.
OS Question
All OS questions were based on basics of UNIX all small -2 commands.
1) how image of one process can be replaced by other process
a) exec
2) how image of one process can be copied to new born process
a) fork
3) how can you list all the files used by a particular process
4) how do u create a link of file
C Questions
I did not attempted the C paper but still I just had a look on C and java
paper. in C most of the question were programs and their out was asked in LINUX environment.
1)
int main()
{
char *a= "Novell";
char *b;
b=malloc(10*sizeof(char));
memset(b,0,10);
while(*b++=*a++);
printf("%s",b);
return 0;
}
2) int main()
{
printf("Hello");
fork();
printf("World");
}
Post new comment