Asked in Honeywell Technical Interview:
C Program to add, subtract, multiply and divide complex numbers :- This program performs basic operations on complex numbers i.e addition, subtraction, multiplication and division. This is a menu driven program in which user will have to enter his/her choice to perform an operation. User can perform operations until desired. To easily handle a complex number a structure named complex has been used, which consists of two integers first integer is for real part of a complex number and second for imaginary part.
#include
#include
#include
struct complex
{
int real;
int img;
};
main()
{
int choice, temp1, temp2, temp3;
struct complex a, b, c;
while(1)
{
clrscr();
printf("Press 1 to add two complex numbers.\n");
printf("Press 2 to subtract two complex...
Tuesday, 22 November 2011
Friday, 18 November 2011
Honeywell Technical Interview Questions
1. Introduce yourself briefly.
2. How much good you are in C (on the scale of 1-10)
3. They gave me the same complex number program and told me what modification I can do in it. (Again write the program) Click here to see this program
4. Write the same complex number addition program with passing values to function, passing structure to function and passing address of the structure to the function.
5. What is recursion? What will happen is we don't give termination condition? How efficient recursion is compared to iteration.
ans:
Recursion is a programming technique that allows the programmer to express operations in terms of themselves. In C++, this takes the form of a function that calls itself. A useful way to think of recursive functions is to imagine them as a process being...
Thursday, 17 November 2011
List of Engineering Entrance Exams In India
Here is a list of a few examinations I know :
AICE - All India Competitive Examination for Admissions to Master's Degree Programmes
AICET - All India Common Entrance Test
AIEEE - All India Engineering Entrance Examination
AMIE - Associate Membership of Institution of Engineers
AMIETE - Associate Membership of Institute of Electronics and Telecommunication Engineers
Annamalai University Engineering Entrance Exam
BEE- Bureau of Energy Efficiency
BITSAT - Birla Institute of Technology and Science Examination
Dhirubhai Ambani Institute Of Information and Communication Technology
GATE - Graduate Aptitude Test in Engineering
IIT JEE - IIT Joint Entrance Examination
ISAT - IIST Admission Test
JNU EEE - Jawaharlal Nehru University Engineering Entrance Exam
MP PET - Madhya Pradesh Pre Engineering Test
NIT...
Latest CTS Placement Paper September 2011 Kolkata
At first the cognizant people came to the college,gave the pre placement talk.Then started the aptitude exam.
There was two part in the paper ----1st part is Verbal and 2nd part is Analytical.
Question was not so easy.You should practice properly specially the verbal part.
322 selected from 340 in the aptitude test .
After a long wait my name was called for the interview.I was lil' bit tensed because that was the 1st interview in my life.Hopefully my HR was a very good person after entering in the interview room-
HR:Sit down
me:thank you sir.
HR:He asked for the CV and look it properly.asked some common question from CV about hobby,achievements
me: answered properly
HR:Then he asked except this(which was written in my hobby) what can u do?
me: bla bla
HR:which is your preferable language
me:java
HR:what...