Sunteți pe pagina 1din 22

Hello,i attended the HONEYWELL campussing on 10 th JANUARY,it was a campussing o nly for EIE Stream ,all TECHNO INDIA

GROUP colleges were invited,it was held in TECHNO INDIA,RAGARHAT. The campussing consisted of the following: 1. Written Test 2. Technical interview 3. HR interview The Written test consisted of 2 parts: technical knowledge and reasoning. There were 40-50 technical questions ,multiple choice of 1 mark each and 5-6 rea soning questions of 5 mark each. The subjects on which the technical questions came from were: A) B) C) D) INDUSTRIAL INSTRUMENTATION SENSORS AND TRANSDUCERS PROCESS CONTROL MICROPROCESSORS

And no questions came from other subjects in technical part.As for reasoning,all the questions came from previous question papers . Unfortunately i didn't got through the Written test. As i heard,the technical questions mainly came PROCESS CONTROL especially PLC AN D DCS.

----------------------------------------------------------------Hi Guys, I did my Masters in Embedded systems at Manipal. This for Internship position. First there will be written test followed by interview. Written Test 2 Patterns: 1. Computer science 2. Electronics You can choose which ever you want. I opted for Computer science, the paper was easy. Questions covered; 1. Data structures: Trees arrangements, Worst case times 2. Os: Paging, Mutes,Deadlocks

3. C programing: different type od increment & decrement predators, static varia ble, pointers... 4. Others: (data base, networking, Finite automate) I cleared the written test, The interview is on the same day it took 1.25 hours 1.They asked me about all the projects in detail i.e size of code, technology us ed etc.. 2. They asked me to write circular linked list code, How to implement stack, and Volatile variables, static function ,pointers etc... 3. i was from electrical back ground so they asked me some electrical technical questions... All the Best ----------------------------------------------------------------------------Hi.. I have attended Honeywell interview on 13th of September 2008 at HTS, Banne rgatta,, Bangalore. It has total of Four Rounds, 1. Written Test (Completely technical) 30 mins 2. Technical Interview around 45 mins 3. Technical Interview around 45 mins 4. Technical Interview around 15 mins 5. HR interview around 15 mins Written Test questions were from Entirely C. I got Question Paper 2 It had questions on File operations, Basic functions, Pointer to functions, pointer declarations, function call in a for loop... I have recalled what ever i could and provided here.... Written test had total of 31 questions and no negative marks.... 1. how to allocate memory for 10 integers and make the contents zeo? ans : ptr= calloc(10, int value); 2. what will be the output? void increment() { return x++; } for(x=0;x<10;increment()) {

some operation; } Ans : I have not tried... may be error 3. How to free the allocated memory? Ans : free(); 4. How to initialize constant pointer? 5. what is the output? int modifyvalue() { x=x+10; } int change value(x) { x=x+1; } void main() { int x=10; changevalue(x); x++; printf("%d", x); x++; printf("%d", x); modifyvalue(); printf("%d", x); } Ans : 11, 12, 12 The above question is 90% reproduced here 6.a question on hoe to free the node in linked list in a for loop.... we have say whether it is correct or not.... 8. x=0; while(x<10) { stmt; x++; } Represent in for loop. options given Nothing much i remember about the written test.... In technical interview they asked only the basics, and about the project and wha t i have mentioned in the resume and about the embedded protocols.

In HR, they asked.... 1. Tell me about Ur self 2. what do you consider as your strength and give an example? 3. Have you ever faced a situation so that you are required to convince your bos s and grow you did it? 4. Have you ever had a situation, that you could not complete your task in time and how you managed that? 5. Have you ever interacted with the customer directly? 6. What are your achievements? 7. What is your role in your project? 8. Did you ever faced a situation that you have to argue on the other side and h ow you convinced? 9. what made you to choose honey well? and some more questions.... I have went till HR and result on Hold... Good luck to all..... ----------------------------------------------------------------------------HONEYWELL PAPER ON 17TH MARCH AT HYDERABAD Hi every one, My name is Sarath completed B.Tech.(CSE) . I have attended the Honeywell at Honeywell campus in Bangalore on 23rd aug 2008. But I cleared only two rounds and I lost in technical round. The pattern is as follows: 1) Written Test-1(objective- technical) 2) Written Test-2(Descriptive- aptitude+technical) 3) Technical Interview-1 4) Technical Interview-2 5) HR Interview 1)Written Test (objective) There are two different question papers 1. Electronics stream 2. Computer stream I belongs to computer science stream. Again there are two different sets of ques tion papers in each stream. This test consists of 40 technical questions. The duration is 45 min.The questio

ns are mainly from C&DS, OS, DBMS, NETWORKS, MICRO PROCESSORS, Some of the questions are: 1. Open addressing and chaining are the methods used for a) sorting b) searching c) conflict- resolution d) none 2. Arrange the following in the increasing order of space complexity a) Merge sort, quick sort, heap sort b) quick sort, merge sort, heap sort c) heap sort, quick sort, merge sort 3. Given a tree and asked the pre order traversal 4. Given a graph and asked the BFS for it 5. If a table is in 3NF, it is also in a) 2NF b) BCNF c) both d) none 6. definition of view 7. In DBMS data is recovered from a crash immediately by using a) storing one copy in another disc b) catalog c) check pointing 8. one more question on normal forms i.e., about transitive dependencies 9. which is the first general purpose microprocessor developed by Intel a) 4004 b) 8080 c) 2002 10. which of the following flag is not set for JUMP instruction a) carry flag b) auxiliary carry flag c) zero flag d) parity flag 11.Which of the following is an IPV6 address 12. what is the minimum and maximum size of TCP header a) 10 bytes b) 20 60 bytes c) 20- 50 bytes 13. If a number of computers are connected to a central hub then it is called a) star topology b) bus topology c) ring topology 14. which protocol is used to transfer data using TCP for a serial or parallel p ort a) ppp b) IPX c) TCP with Net BEUI 15. which of the following is a non preemptive scheduling a) FCFS b) round robin c) shortest job first 16. which of the following is not a synchronization tool. a) semaphores b) mutex c) shared memory d) all 17. Unix uses _________ scheduling a) round robin b) priority scheduling 18. In which layer the conversion of data structures of the data transferring in to the format of host is done in a) application layer b) transport layer c) presentation layer d) data link layer 19. The correct order of data transfer when transferring data from magnetic disk to System is a) magnetic disk main memory cache memory registers b) magnetic disk main memory registers

c) magnetic disk main memory/cache memory registers 20. Given a binary number which is equivalent to a decimal number including a si gn a) 100 b) -100 c) 101 d)-101 21. which of the following is not true about functions. a) functions can call by itself b) function may or may not return any value c) function should be defined in the same order as they are declared before 22. If we declare a const variable as static, then its _________ changes a) life b) scope c) initial default value d) storage 23. What is the o/p #define f(x,y) x=x+y;y=x-y;x=x-y; main() { int a=10,b=5; f(a,b); printf( The values of a and b are, %d, %d ,a,b); } a) 10 5 b) 5 10 c) 5 5 d) 10 10 24. main() { void *ptr; int i=1; ptr=&i; ptr++; } a) the size of ptr incremented by 1 byte b) the size of ptr incremented by 2 bytes c) the size of ptr incremented by 4 bytes d) none I remember these questions only. Remaining are mainly c programs.Around 350 memb ers attended in main campus . Around 80 cleared this round(computers +electronic s) 2)Written Test-2(Descriptive- aptitude+technical) Next round is again written test consists of 7 aptitude questions and 10 technic al questions(all c programs). This test is common for all. The aptitude questions are 1)There are 4 women to cross bridge and Flashlight.One or two women can cross th e bridge with the flash light at a time.those have different walking speeds.The pair must walk at the rate of slower pace woman1:1 minutes woman2:2 minutes woman3:5 minutes woman4:10 minutes Then what is the minimum required time to cross the bridge by all the 4 women wi thout throwing flashlight? Ans) 19 min First woman1 and 2 will go to other end in 2 min (at the slower pace of woman2) 2

m Woman 1 will come back -1min Woman 1 and 3 will go-- 5min Woman 1 will come back1min Woman 1 and 4 will go10min Total=2+1+5+1+10=19 2)There are cats got together to decide killing the mice of 999919,each cat kill s equal no. of mice and each cat kills more no.of mice than cats there were.Then what are the number of cats? 3)the tree grows first day 1/2 of its original size,grows 1/3 of its previous da y size, and grows 1/4 and so on. How many days it will take to grow 100 times to the original size of tree? Ans) 150 days 4)There is one 40 kg weight stone. How many weights should I break from this 40 kg so that it can measure any weight between 1kg to 40 kg? 5)There is one monkey climbs 3fts and slips down 2fts of a tree in 1 hour. How m uch time it will take to reach the top of the tree of 20fts height? Ans) 18 hours 6) A ball is released from a height of 100 mts. After falling on the ground it r aises to a height of half of the previous height and the process repeats until i t comes to rest. What is the total distance traveled by the ball throughout the journey. 7) Complete the series 31 62 __ 25 65 __ 19 Totally (both campuses) around 50 (cs+ec) members cleared this round. Technical Questions 1) Write a C function to search a number in the given list of numbers .don't use print f and scan f. 2) main() { int a=10,b=7,c=15,z; z=?; printf( Biggest number is %d , z); } Write the expression for z to print the biggest of three numbers using condition al operator. Ans) z=((a>b)&&(a>c)) ? a : (((b>a)&&(b>c))?b:c) 3) if( condition) { printf( Hello ); } else { printf( World ); }

What should be the condition to display the output as hello world . 4) what is the output of the following program main() { int cnt,i=7; cnt/=i; printf( %d ,cnt); } Remaining questions are on pointers i.e., what is the output of the program Technical Interview 1

In this round they mainly concentrate on C and C++. The first question is Rate yourself in C .He wrote the algorithm for gcd and ask ed me to write the program for it. What is virtual function. What is meant by monolithic operating system What printf statement will return What is the difference between multiprogramming and multitasking Is UNIX multiuser os & Is windows ? What is reprocessing Write c program for queue Write the layers in OSI model and what is the difference b/w connection oriented and connection less Is sending SMS conn. oriented or conn. less? And sending mail is conn. oriented or conn. less? What is use of tail And ps command command in UNIX

Water fall model in s/w engg. He asked What is a process I told program under execution He asked what is program I told sequence of instructions He again asked what is meant by instruction etc. So be strong in technical subje cts mainly c and c++. ------------------------------------------------------------------------------Hi I am Subhrojit Chowdhury from G.N.I.T. Kolkata Recently I have been placed in Honeywell Automation India Limited.I would like to share my experience with you guys.

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 a ppeared 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 HR round. Written Test(30 questions) 1>R.S Agarwal Will do The job. simple percentage,profit and loss,work and wages etc General English(15 questions) 1>Consult GRE Barrons. Synonyms,antonyms,Paragraph Best of luck guys, -------------------------------------------------------------------------------HONEYWELL PAPER ON 7th APRIL I attended the HONEYWELL written test on 7th April 2007 at . The selection proce dure has 4 rounds. 1st round-----------> written test 2nd round----------> tech interview 3rdd round----------> tech interview 4th round----------> HR interview 1st round(Written test): In first round they separate the whole candidates as two screams namely electron ics stream and IT stream. we have separate paper according to our stream. I'm a EEE student so I come under electronics stream. Ist round contains two types of paper 1) objective type 2) descriptive type Objective type: It contains 100 objective type questions. 50 tech [ Electronics, DSP, Control Systems, Digital Systems, Micro processor, L IC and etc,] 30 C[structure, Array, pointer, data types, functions ] 20 aptitude[very eay R.S Agarval enough] all in 100 minutes. 25% negative marking for each wrong answer. Descriptive type: It 1) r, 2) has two section tech part [Electronics, DSP, Control Systems, Digital Systems, Micro processo LIC and etc]---> 10 mark Programming part [ u've a option to choose C, C++, JAVA, .NET] ------->10 mar

k All in 20 minutes 2nd round(Tech interview): I attuned it for about 1 hour. all questions from basics from your dept [ Electronics, DSP, Control Systems, Di gital Systems, Micro processor, LIC and etc,] and C, and mainly your project. Fo cus on your RESUME. That's ver very important. 3rd round(Tech interview): I attended it for about 45 minutes, some what depth in your dept. and C. They(2 panel) asked me about past interview experience in this round. 4th round(HR interview): This is HR round. It was very easy. It contains general questions like what's ur strength?, what your friends think about u?, ur achievement and etc... I attend ed the 2nd, 3rd, and 4th rounds in HONEYWELL TECH SOLUTIONS, MADURAI. I've been selected in HONEYWELL. The result was announced on May 14th, 2007 thro w mobile. ALL THE BEST Ponkarthikeyan -----------------------------------------------------------------------------HONEYWELL PAPER ON 8th FEBRUARY Hi friends, I am ECE student. i have attended honey well 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.descriptive 20marks(tech& program on C) 1.TECH: SUBJECT------electronic circuits& devices(find o/p) LIC,digital electronics, con trol system,dsp, microprocessor&controller,analog&digital comm. 2.C: AREA---------pointer**,function**,union,structure,files,memory management. FROM EXPLORING C 3.APTITUDE: TOPIC--------profit&loss**,numbers,area,interest,distance,train ,odd man. VERY EASY FROM r.s AGARWAL

MOST ASKED FROM THIS AREA. 4.DESCRIPTIVE: 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 PROGRAMMING-------There is a CHOICE to take C ,CPP ,JAVA ,.NET C ? ----Eg:he giv e summary for program then U write program Like without usingSCANF & PRINTF stat ements IF YOU HAVE GOOD SKILL IN THIS SUBJECT, YOU EASILY CLEAR YOUR WRITTEN TEST. 2 ROUND TECHNICAL INTERVIEW 1.Your department tech? 2.Yours ability in c & cp 3 ROUND HR INTERVIEW All the best friends. -------------------------------------------------------------------------------HONEYWELL PAPER ON 29th JANUARY AT PUNE Date: 29th January, 2007 Location: CDAC, ACTS, Pune Mode: Campus placement Hi guys & guls, This is Prashant Kr. Agarwal. I m trying to give some important topics about int erviews, plz read it, they may give u some confidence. Most of the question were from SOFTWARE ENGINEERING, C programming, Data structu res, Operating systems such as-> SDLC (software development life cycle)-what r various models [waterfall, prot otype, iterative enhancement, spiral], wht r the steps under these models. -> some question about Testing, unit testing, integration testing, alpha, beta t esting ,system testing.-> What is CMM levels, Six sigma, ISO standards.->what r various steps under which a C program is converted into .exe file (preprocessing , compilation, linking)->Program for any sorting method (I made bubble sort, he discussed complexity issues of various sorting algorithms)->Program for matrix m ultiplication.->What are the different kinds of tree (questions about Binary tre e, Binary search tree, AVL tree)->Difference between arrays and linked list, whi ch one is better (I said it depends upon application, if we want to store some n ame ie character string of predefined length array will be better option b coz mor e memory is required to store pointers etc)-> Some question about Aerospace, avi ation etc(I said these thing were not part of my syllabus at all, but I if I get

a chance to learn the these I can quickly learn them) ->Which data structure is used in expression evaluation, how a infix expression is evaluated (first converted into post-fix, then evaluate using stack) -> Some operating system questions (about scheduling, semaphore, mutates) -> what is Real time system, difference between hard and soft real time systems with examples(hint: in hard real time systems strict dead lines r imposed, THE S YSTEM WILL FAIL if the processing is not done within defined time constrains ex. Firing a missile on a aircraft, whereas in soft real time system deadlines are i mportant but missing the deadline will not lead to system failure, for ex. DVD p layer when a command is given thru remote, the delay of few millisecond will not lead to serious implications) -> I suggest you all to focus about your projects more. He may drive several que stions 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 pr esent 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 .(I know it is good to write or read, but very hard to implement ., but try it, surely it will work) , For written test: Two set of papers were there, 1 for EC & 1 for CS. I opted for CS. 50 technical: most of the weight age 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: Few questions were like-1> Arrange Them in the order of space complexity-merge s ort, quick sort, heap sort 2> Void main(){ complete=10;complete1=11;if(complete=12) { printf ( hi ); }else{ pri ntf( hello );} printf( %d %d ,complete,complete1); } o/p- 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> St ructure A{ int x; float y; }a; union B { int p; float ; }b; choices: 1.all the times a & b have same size, 2. s uch declaration r not possible 3. a & b have same size. 4 ..6> a simple qus on flow in a switch-case block. OK BEST OF LUCK --------------------------------------------------------------------------------HONEYWELL PAPER ON 19th DECEMBER AT NOIDA Hello friends . I am Dharmesh Pitroda and I just share my views with regard to Honeywell

I am presently doing CDAC embedded system course from mohali joint cdac noida Honeywell visited there on 19th...CDAC noida Total strength: near about 200 people of different course Cleared the written: 45 Take the interview: 22 Select: 4 There are two set of paper EC and CS EC people can even take CS set

placement with

CS syllabus is very easy please refer other paper on net our paper was same to s ame like net so please solve all questions First attend technical paper than C then appti Appti and C are very easy They just check ur technical ability.. Please be full prepare with ur complete r esume and each and every topic written in ur resume My interview was very long and take 2 hour in two part.. in first part they just check my approach and in second part they ask me technical questions Please be prepare with OS,DS,C,C++, ur project and other ur skills that u write in ur resume HR is just for formality . BEST OF LUCK --------------------------------------------------------------------------------HONEYWELL PAPER - 22 JUL 2006 - BANGALORE These are the questions asked for the Honeywell test conducted on 22 July 06 in their Bangalore office. There were 100 questions: 50 Technical questions (branch wise) 30 C questions 20 aptitude questions Aptitude is very easy. Simple questions from profit&loss, ratio, odd-man series, time-distance, clock... Technical from OS, DBMS, CN, 8085, unix, DS.. some of the qns I remembered are g iven below. 1) Binary search tree is used in

a) sorting b)searching c)indexing d)all the above 2) Given a tree..write the preorder traversal 3) Given an infix expression..write its post fix 4) First general purpose microprocessor a) 2002 b)4004 c)8080 d)8085 5) What is 8253 6) ____flag is not used in 8085 jump instructions 7) SNMP is used in which layer 8) Banker's algorithm is used for 9) Belady's anomaly is related to___ 10) Which of the following is non-preemptive a) FIFO b)SJF c)Round robin d)all the above 11 )A relation in 3NF is in______ 12) A question on stabilizability 13) One SQL query 14) Functional dependency one question 15) The first general purpose microprocessor is ____-bit 16) In a three byte instruction the second byte indicates____ 17) Average case analysis for partition exchange sort 18) How the receiver knows to what service the packet to be forwarded? 19) Given a binary sign magnitude no:..write its decimal 20) The order in which data is transferred frm magnetic disk disk->main mem->cache->h/w register 21) In which layer of the network data structure format change is done 22) Which of the following allow parallel & serial connections a)DHCP b)PPP c)IPX d)all the above 23) Given some IP addresses...identify which one is IPv6? 24) Open addressing and chaining is used in a)sorting b)indexing c)collision-resolution d)none of the above 25) Storage space requirement for diff: sorts in the descending order 26) Which scheduling policy is used in UNIX.. 27) In database which mechanism is suitable for recovery? a)check pointing b)indexing... c) d)

28) Which of the following is not correct? a)arrays consume less space b)linked lists are more complex c)linked lists use less space 29)which of the following is not correct? a)main does not have arguments b)main can have command line arguments c)main have variable arguments 30) Which of the following is not correct? a)function can call itself b)function can have no return type c)function cannot have multiple return statements d)function can have arguments 31) When an interrupt is called control is given to.. a)interrupt vector table b)interrupt service routine c)stack 32) Which of the following is not a synchronization tool a)semaphore b)mutex c)mutual exclusion d)message passing 33) Given a graph write the BFS for it 34) How can u increase ports of a microprocessor? a)8255 b)8259 c)8253 d)8251 35) What is 8259? 36) Which of the following maintains a constant time(best,worst,average)? a)searching b)sorting c)indexing d)none 37) In a database a table is stored not fully..it is an example of a)views b)logical data independence c)abstraction d)all the above 38) The time CPU takes to complete the execution of processes____ 39) The minimum length of TCP/IP header and IP data gram header 40) Process spawning in OS is__________ 41) The topology that uses a central hub is___ C questions were dam easy..pointers and strings ..if ur strong in pointer concep ts u can score easily. 2 or 3 qns frm files,enum,ex tern. ------------------------------------------------------------------------------------HONEYWELL PATTERN & INTERVIEW - 24 JUN 2006 - HYDERABAD Hi Friends, My experience at Honey Well on 24/06/2006 Eligibility : 70% in B.Tech Location : Hyderabad (CBIT)

Mode : Off-Campus Round1: Written test consists of , 50 questions from all subjects +30 questions from C + . 20 questions from aptitude(mainly concentrate on percentage problems) . Duration : 1hr 40min There is a separate paper for CS and Electronics students,but C and Aptitude que stions are same for all branches. No. of students appeared for written test : 1100 (approx) No. of students shortlisted for the second round are 150 students. Round 2: Technical round-1 1.First they asked about my project (Be Prepare with it) ? 2.Tell some thing about urself ? 3.Write code for reversing the SLL(single linked list) ? 4. Explain ToH (Towers of honie) problem ? 5. He asked some basic questions on pointers ? 6.How can find missed value ,if u want to store 100 values in a 99 size array ? U have to insert the elements randomly ? And one important thing is u have to fi nd in . . the value in the single pass ? (hint:Use the Sum of numbers formula n( n+1)/2) 7. And some other which I not remembered ? Duration :20 min No.of students shortlist for 3rd round are 30 students. Round 3: Technical round-2 For some students they interviewed for 45min, but for some just they took 15min only 1.He asked me some typical query to write in SQL and also to write java program for that ? 2.a^b + b^ a =100? Solve for 'a' and 'b' ? sol: (first solution) 1^99 +99^1 =100 (second solution) 6^2 + 2^6 =100 No. of students got offer : 06 (approx) Round 4: HR round

This is just for formality This company take the students who are sound in techinal. They least bother abou t the remains thing like.... Suggestion : Don't be in a hurry to learn too many questions. First learn the co ncepts then after look good number of problems on that topics. (Paper Submitted By : V.Raghavender, Hyderabad) -----------------------------------------------------------------------HONEYWELL PAPER & INTERVIEW - 23 JUN 2006 - HYDERABAD I am Haritha. On 23rd June i have attended Honeywell written test in CBIT, Hyder abad. The eligibility for the written test was through noukri and referrals and only 7 0%+ in B-tech. I have applied it 2 months back n got a call letter recently. They informed before 15days by mails about the written test.I would like to shar e my experience so that it becomes easy for others who r appearing for it in fut ure. Cutoff: 70%+ in B-tech Selection Procedure: Written test (overall cutoff is 52 marks and no negative marking) 2 technical interviews 1 HR interview Paper Pattern 100 questions : 100 minutes. The questions were from many subjects. They are DBMS - 10 to 15 questions(Don't remember in exact figures) C and DS - 10 to 15 Microprocessors - 10 to 15 Computer networks (the same no:) Operating systems General Aptitude 20 questions. Mind u: There was no verbal or verbal reasoning and any GDs Some questions I remember: 1) A relation to be in 3rd normal form is in _ normal form 2) How can u increase ports of a microprocessor? (8251,8255,8253 and 1 more opti on) 3) What is 8253?(USART,DMA,programmable interrupt controller and one more) 4)8255?

5)How many bits microprocessor was first developed?(8 bit) 6)In a 3 bit instruction middle bit is (operand ,operator n ................) 7)Which of the following is IPv6 addressing? 8)In Which of the following layers SMTP is used? 9)About transport layer 10)To select records from a relation where primary key is name and e name starts with "p" 11)small c logical questions 12)apti mostly from profit and loss 13)1 heights and distance prob 14)1 prob on true discount 15)Brouter is hybrid of? The aptitude questions are really very easy u can solve them easily. There was an overall cutoff of 52 marks of coz they didn't announce officially. Coming to technical s u must be through with ur basics. All basics. Friends i have got selected in the written test.Next day i had interview. About interview: 2 technical rounds the questions were like 1st technical (1 person) 1) Rate Ur self in C and DS and C++ 2) About linked lists(programs) 3) About sorting(logics) 4) About Normalization. 5) y do we need denormalization? 6) What r bitfeilds in C? 7) Programs of linear search and binary search. for somebody they asked about there project also but they didn't ask me. 2nd technical (A 2 member Panel)

1) C and Ds questions.(enum types) 2) Difference between structure and Union 3) Linked lists declarations 4) Difference between C and Java(coz i mentioned Java in my resume) 5) Say Some thing about data structures 6) What r oops principles? 7) How does an OS manage memory? 8) About AWI(java) 9) Regarding garbage collection. 10) Can we clear memory explicitly?If so how?Write a stmt for such an action. 11) exceptions and many more. I had my HR on the very same day. It was cool. They asked me Say me about Ur academic profile 1) Difference between CSE and IT? 2) Why Honeywell? 3) Package u desire? 4) Have u attended any other companies? 5) Family background? 6) Willingness to relocate and sign for bond? 7) R u ready to work in Madurai 8) Highest position u desire for? Job is at Madurai and training for 6 months. Don't forget to see the company pro file before u go for interview. --------------------------------------------------------------------------HONEYWELL PATTERN - 11 JUN 2006 - CHENNAI Today(11.06.06) I have attended Honeywell (Madurai) aptitude at Loyola college C hennai. There was an introduction about their company and the test started They didn't announce the results there The pattern of questions was Totally 100*1=100

and they told that there is negative marks (0.25) for every wrong answer The Technical questions were basically from Data structures Operating systems DBMS concepts The Aptitude questions are basic which are available at QA books (20*1=20) and c programs 30 q's and in the descriptive part Three programs were asked 1st is sorting the no in the descending order 2nd is type of hash table program 3rd i didn't remember that -----------------------------------------------------------------------------HONEYWELL PATTERN - MAY 2006 Hi , Thanks for all the help u guys provided. I have finally got placed in Honey well . Honeywell pattern: 10 10 10 10 30 20 DBMS 10 OS data structures micro a mix of all c apti negative marking is there

cutoff: 60-70 2 tech interview 1 hr Interviews are strenuous 1 1/2hr each. prepare well and thoroughly.... --------------------------------------------------------------------------Honeywell Campus Test at NCE,Kovilpatti on July 26 2003. 1.Aptitude: Questions from 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 There must 4 democrats & 3 republicans out of the 12 professors.No of X professo rs 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 Democrats & 3 republicans out of the 12 professors.No of X professo rs 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 que ue byte length?,6800 what is it?8085 pgms...,port no calculations-data Structures W hich Data Structures to use for infix to prefix conversion,Worst case complexity for quick sort,preorder traversal Binary tree ... int *data[10];what does the variable data denotes? { int a[]={10,20,30,40,50}; fun(a+1); } fun(int *p) { for(int i=1;i<=3;i++) printf("%d",*(p+i));} enum day { saturday,sunday=3,monday,tuesday}; value of saturday,tuesday.4. enum day {saturday,sunday=-1,monday,tuesday}; int x=monday;value of x?5. #define ADD(X,Y) X+Ymain(){-#undef ADD(X,Y) fun(); } fun() { int y=ADD(3,2); printf("%d",y); } o/p? #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? int x;

int *p; int **p1; int ***p2; How to assign each one? --------------------------------------------------------------

S-ar putea să vă placă și