Site icon FreshersHome

Honeywell 29th Jan 2007 at CDAC ACTS Pune – Campus placement paper

Company Name: Honeywell
Locaion: CDAC, ACTS, Pune
Date: 29th January, 2007
Mode: Campus placement

The questions are from

SOFTWARE ENGINEERING,

Some of The Questions :

There are Two Technical Round procedure:

1: Direct, face-to-face technical round

2: Telephonic Technical round

Some Candidates had direct and some had Telephonic Round. Be through with your project, they will ask you questions related to your project and skills that you have. So you better be careful about what you write in your resume.

For written test:

Two set of papers were there, 1 for EC & 1 for CS. [ If you want a easy paper go 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:

Some Questions were like:

1> Arrange Them in the order of space complexity Merge sort, quick sort, heap sort

2> Void main()
{
complete=10;
complete1=11;
if(complete=12)
{
printf (“hi”);
}
else
{
printf(“hello”);
}
printf(“%d %d “,complete,complete1);
}
Output: hi 12 11

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>Program to illustrate Flow in Switch case block.