Honeywell Conducted A Test in IIT and Interview Was in Their Office at B'lore
Honeywell Conducted A Test in IIT and Interview Was in Their Office at B'lore
Honeywell Conducted A Test in IIT and Interview Was in Their Office at B'lore
com
Get Collection of Placement Papers of Various Companies at www.123eng.com
Honeywell conducted a test in IIT and Interview was in their
office at B'lore.
Do U know C++ ?
How good are U in C and C++ ?
Rate U'rslef in both C and C++. ( 1 - 10 marks)
Asked about the percentages and marks during SSC, PDC, B.Tech and MS.
When can U join ?
Who is U'r guide ?
U are from which place ?
Where is it in Kerala ?
How do U perform in the first two interviews ?
WHy have U given Honeywell as dream job ?
Some more personal questions
Towards the middle questions are easy than from the front.
ans.: 13 (i think)
eg. if the sum of five consecutive nos. 35? how many prime nos
are there :
c. What data structes you will use if you want to go to first record from
the last and vice versa?
ans.: doubly linked circular list
d. Given 10000 nos. and 48MB Memory. What is the complexity of the
efficient sorting algo.? (the algo. is not mentioned)
d.
c.
1. int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
pattern:
1st round
thecnical(cs and ece sperate papers)-35q in 30 min
apti(10anal,1 logic,remaining numeric)-30 in 30 min
20 c in 15 min
2nd round
G.D
topics:
impact of globalisation or westernisation on indian
culture
3rd round
technical interview
may be 2 rounds in this ...
4rd
final roud is this .
this is HR
1.Aptitude:
Simple train pbms
age
ratio - proportion
Profit - loss
Time & work
Time & Distance
Pipe & Cisterns
Shaded area
Volume ( cylinder ,cone ..)
Reasoning
2 sections
a part with 4 questions
b part with 6 questions
Easy to solve.
2.Technical(Computer Science)
OS
cache access time -100ns
Primary memory access time -1000ns
...then some data & condition
find the actual access time.
microprocessor
( lot of questions )
8085 no of 16 bit registers.
8086 Instruction queue byte length?
C
Only one pgm - recursive fn - find the value..
quite easy.
3.C
1. int *data[10];
what does the variable data denotes?
2.{
int a[]={10,20,30,40,50};
fun(a+1);
}
fun(int *p)
{
for(int i=1;i<=3;i++)
printf("%d",*(p+i));
}
int x=monday;
value of x?
5. #define ADD(X,Y) X+Y
main()
o/p?
6. #define ADD(X,Y) X+Y
main()
{
#undef ADD;
fun();
}
fun()
{
#if not defined(ADD)
define ADD(X+Y) X*Y
int y=ADD(3,2);
printf("%d",y);
}
o/p?
7. ptr sums...
8. int x;
int *p;
int **p1;
int ***p2;
How to assign each one?
9.malloc pbms..
3. TRAP is _____interrupt
(a)synchronus
(b)asynchronus
(c)hardware
(d)...
7. A semaphore with negative count n(s=n) has how many processes in the
Q?
(a)0
(b)n
(c)n+1
(d)n-1
(d)24ndB
10. From a circular sheet of radius 10cm , 40% is cut off & from the
remaining portion a cone is constructed, what is the ratio of the radius of the cone
to its height?
11. If a vessel contains 56 litres of a mixture of milk & water in the ratio
3:2..what amount of water should be added to make the ratio 4:5?
12. 2 pipes fill a cistern in 12 mins,pipe A is 3 times faster than pipe b...if
only pipe B has to fill the cistern ,how long will it take?
(a)1hour
{
INTEGER p=10;/*line 5*/
printf("%d",p);
}
o/p?
16. main()
{
int counter=1;
for(;;)
{
counter++;
if(counter>9)
break;
}
}
in the above program
(a)error b'coz for should have parameters
(b)error bcoz 2 semicolons in a for loop are invalid
(c)no error,loop is executed once
(d) no error ,loop is executed 10 times
17. main()
{
char str={'H','E','L','L','O','\0'}
printf("%s/n",str+1);
}
o/p?
(a)prints ELLO
(b)prints HELLO
(c)prints ILLO (i.e.'H' is incremented by 1)
(d)...
19. The average marks of 12 students was found to be......(some no)...it was
later found that while entering the data , it had been entered as 74 instead of
50...and 20 instead of 24(nos are not the same)...what is the correct average?
20. If a lady bought a house & sold it at 25% more than what she had paid
after 3 years, she has to pay 50%tax on the gain...If C is the cost price,(gain=s.P-
c.p),what tax did she have to pay?
(a)..
(b)C/8
(c)...
(d)...
22. If a car travels from A to B at a speed of 'x' kmph & travels back from B
to A at 4/5th the speed,then the total distance travelled in terms of percentage of x
is?
(a)2400km
(b)3600km
(c)..
(d)...
28. Minimum no of NAND gates required to realize the boolean eqn: Z=ABC?
(a) 4
29. It has been found that mercury poisoning due to industrial pollution
causes Hobson's disease. An island R is completely away from modern
industry.People here follow subsistence agriculture method. A high % of people
in Island R are affected by Hobsons disease.From the above paragraph, we can
deduce
(i) there must be another reason for Hobson's disease other than mercury
posoning
(ii) mercury poisoning can be due to other reasons than industrial pollution
(iii)....
(a) i only
(b)ii only
(c) i ,ii, iii
(d) i and ii
30. fun()
{
int counter=1;
counter++;
if(counter>10)
fun();
}...(some program similar to this one). the program will be executed infinetely--
ans
32. Union..
{
int ivalue;
char lvalue;
struct boo
{
int ivalue;
char lvalue;
}databook;
};
(a)error as struct within union is not allowed
(b)error as struct members have same name as union members
(c)...
(d).....
Aptitude:
There must 4 domocrats & 3 republicans out of the 12 professors.No of X professors are
A,B,C,D. No of Y professors are E,F,G,H,I.If A comes f & G r absent ..
so on.
There must 4 domocrats & 3 republicans out of the 12 professors.No of X professors are
A,B,C,D. No of Y professors are E,F,G,H,I.If A comes f & G r absent ..
so on.
2. Technical(Computer Science)
OS,cache access time -100ns,Primary memory access time -1000ns,...then some data &
condition, find the actual access time.,microprocessor ( lot of questions ) 8085 no of16
bit registers.,8086 Instruction queue byte length?,8088 Instruction queue
Data Structures to use for infix to prefix conversion,Worst case complexity for quick
sort,preorder traversal Binary tree ...
2. {
int a[]={10,20,30,40,50};
fun(a+1);
fun(int *p)
{ for(int i=1;i<=3;i++)
printf("%d",*(p+i));}
fun()
{
int y=ADD(3,2);
printf("%d",y);
}
o/p?
5. int x;
int *p;
int **p1;
int ***p2;
9. How much time is spent usually in each phases and why Which one do
U want to work if selected in Honeywell ?
Selection Process
1>Written Test.
2>Technical Interview.
3>H R Interview.
Written Test
It consisted of 2 parts General Maths,General English.....Almost 1500 students appeared
for the test and 43 students cleared the aptitude test.After that we had our technical round
21 cleared the round.At last 14 of us cleared the H R round.
Hi friends, I am ECE student. i have attented honeywell written test on madurai. so, i give
some information to you. it consists of 4 section.
1.Technical 50
2.C 30 These 100 takes 100 min(1h 40min)
3.Aptitude 20
4.discriptive 20marks(tech& program on C)
1.TECH:
SUBJECT------electronic circuits& devices(find o/p) LIC,digital electronics, contro
system,dsp, microproesser&controller,analog&digital comm.
2.C:
AREA---------pointer**,funtion**,union,sturture,files,memory management.
FROM EXPLORING C
3.APTITUDE:
TOPIC--------profit&loss**,numders,area,interest,distance,train,odd man.
VERY EASY FROM r.s AGGARWAL
4.DISCRIPTIVE:
TECH AREA---------CIRCUIT DRAWING(he give i/p & o/p for us---
i/p==230v&50Hz, o/p==12v&0Hz ) diode operation,use of ALE in Up,likewise for 10
marks
IF YOU HAVE GOOD SKILL IN THIS SUBJECT, YOU EASILY CLEAR YOUR
WRITTEN TEST.
2 ROUND
TECHNICAL INTERVIEW
1.YOUR DEPARTMENT TECH ?
2.YOUR'S ABLITY IN C & CP
3 ROUND
HR INTERVIEW
-> I suggest you all to focus about your projects more. He may drive several
questions from ur projects itself.
There is procedure of two technical rounds, (In my batch, for some candidates 1 technical
round was face-to-face and another one is telephonic, I suggest to be prepare for
telephonic interview also, practice for describing your project etc on phone also, b’coz it
is a bit hard to make understand to a person who is not present in front of u, so practice it
also)
So, ALL THE BEST, be prepare, have FAITH on GOD……. He has thought something
for u……, don’t worry….
For written test: Two set of papers were there, 1 for EC & 1 for CS. I opted for CS.
50 technical: most of the weightage was given to DBMS, data structures etc.
30 C programming: Read exploring C completely, in my suggestion that is vry good &
sufficient book for C questions.
20 aptitude question:
3> How many times in a day the hr. & min. hands of a clock are in straight line.
4> How many times in a day the hr. & min. hands of a clock meet each other.
5> Structure A
{
int x;
float y;
}a;
union B
{
int p;
float ;
}b;
choices: 1.all the times a & b have same size, 2. such declaration r not possible
3. a & b have same size. 4……..
6> a simple qus on flow in a switch-case block.