You are on page 1of 34

HUAWEI Aptitude

1.Following some pattern, understand the table and find the answer? JANUARY 20 APRIL 10 MAY 5 NOVEMBER 15 JULY ?

2. Find the missing number: 1 10 3 9 5 8 7 7 9 6 ? ?

3. If it was two hours later, it would be half an hour as long until midnight as it will be if it were an hour later. What is the time now?

4. In a city, 80% speaks English, 70% speaks Hindi and 10% do not speak both. It was found that 162 people talk both. How many are there in the city?

5. Find the missing number: 0 6 24 X 120

6. Which is not 'lean year': 1900 2000 1952 1980

7. Find the missing number: J, ?, M, ?, M, J, ?, A, S, O, N, ?

8. There are 27 pearls in a bag. One among them is less in weight. You have been given 2 pan weight machine. In how many trials, you will be able to find the defected one? 4 3 11 13 9. Direct distance between A & B is 200. Direct distance between B & C is 200. Direct distance between C & A?

10. There are 30 socks in a bag. 30% is in blue color. What is the probability to take two blue socks?

11. In a ground, there are two poles in 7 ft & 12 ft respectively. They are 12 ft apart from each other. What is the distance between the edges of two poles?

12. You need to print an document of the area 216 sq cm. Condition is 3 cm margin is to be left at both top & bottom and 2 cm at the sides. What 'd be the optimized size of your paper?

13. In a party, every man has his dog with him. There are 22 heads and 72 legs all together. How many men & dogs are there?

14. Ram writes a number between 1 to 1000. Raja wants to know the number, knowing Ram can answer only yes & no and always speaks truth. What will be the minimum number of questions Raja finds the answer. a. 999 b.10 c.500 d.none

15. How many ways a section of four letter word can be made in complete alphabet?

16. Find the missing number: 0, 0.577, 1, 1.732, ? a. 0.656 b.2 c.2.743 d.none

17. 17171717171.....(101 digits) is divided by 625. What is the answer?

18. Synonym for ZENITH: ridge trough nadir crecent 19. June 30, 2004 is wednesday. What is June 30, 1974?

20. Two different types of tea are mixed, at 6 Kg of type 1 and 4 Kg of type 2. One Kg of type 1 is Rs. 6 and that of type 2 is Rs. 7. The seller get 10% profit, by this action. Find at what price, he 'd have sold the mixture/Kg?

21. All the students of class are told to sit in circle shape. Here the boy at the 6 th position is exactly opposite to 16 th boy. Total number of boys in the class?

22. The average mark of 10 students is 80%. Later it was found that for one student, instead of 60%, the recorded 90%, by mistake. Now the corrected new percentage? Ans: Old % is 80 for 10 ppl. So the total: 800. Difference in correction : 30. So the total : 770 for 10 ppl. (i.e) 770/10= 77%. (New %)

23 A can do a piece of work in 7 days of 9 hours each and B can do it in 6 days of 7 bours each. How long will they take to do it, working together 8 hours a day? Sol. 3 days

24. A and B can do a piece of work in 18 days; Band C can do it in 24 days A and C can do it in 36 days. In how many days will A, Band C finish it together and separately? Sol. , A, Band C together can finish the work in 16 days.

A alone can finish the work in 48 days. B alone can finish the work in 144/5=28 4/5 days C alone can finish the work in 144 days.

25 . A is twice as good a workman as B and together they finish a piece in 18 days. In how many days will A alone finish the work? Sol. 27 days.

26. A can do a certain job in 12 days. B is 60% more efficient than A. How many days does B alone take to do the same job? Sol. 7 1/2 days.

27. A can do a piece of work in 80 days. He works at it for 10 days B alone finishes the remaining work in 42 days. In how much time will A and B working together, finish the work? Sol. 30 days.

28. A and B undertake to do a piece of work for Rs. 600. A alone can do it in 6 days while B alone can do it in 8 days. With the help of C, they finish it in 3 days. !find the share of each. Sol : Rs. 75.

29. A and B working separately can do a piece of work in 9 and 12 days respectively, If they work for a day alternately, A beginning, in how many days, the work will be completed? Sol : 10 1/4days.

30 .45 men can complete a work in 16 days. Six days after they started working, 30 more men joined them. How many days will they now take to complete the remaining work?

C programming:

[What will be the output???]

1. void checkA() { int a=2; if(a=3!=3) printf(" 3 "); else printf(" 2 "); return; }

2. main() { char P[]={"Hello World"}; printf(" %s ",p); main(); }

3. UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--;

4. # define D 10 # define Y D+10 # define D 30 main(int argc, char *arc[]) { printf(" %d ",D); }

5. # define TRUE 0 main() { int i=0; while(TRUE) { printf(" %d ",i); i++;

} printf(" %d ",i);

6. UCHAR j; for(j=0;j<2000;j++); Number of iterations?

7. main() { int a[5]; a[0]=0; a[1]=1; for(i=2 ; i<4 ; i++) a[i] = a[i-1] + a[i-2]; } What are the elements of array?

8.In the following code snippet can we declare a new typedef named ptr even though struct employee has not been completely declared while using typedef? A. Yes Ans-A B. No

9.What will be the output of the program?

A. C. Ans-B

3, 4, 4, 3 3, 3, 4, 4

B. D.

4, 3, 4, 3 3, 4, 3, 4

10.Two tables emp(empid,name,deptid,sal) and dept(deptid,deptname) are there.write a query which displays empname,corresponding deptname also display those employee names who donot belong to any dept.

11.Write prefix and post fix notation for (a+b)*c-(d+e)^(f-g)

12.write program to swap 2 variables without using extra memory.

13.Find the output for the following C program fn f(x) { if(x<=0) return; else f(x-1)+x; }

14.Find the output for the following C program main() { intx=2,y=6,z=6;

x=y=z; printf(%d",x) }

15. Given the following statement enum day = {jan = 1, feb=4, april, may} What is the value of may? (a) 4 (b) 5 (c) 6 (d) 11 (e) None of the above

16. Find the output for the following C program main {int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);

17. Find the output for the following C program fn f(x) { if(x<=0)

return; else f(x-1)+x; }

18. Find the output for the following C program i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) {k+=j<10?4:3; } printf("%d", k);

19. Find the output for the following C program int i =10 main() {int i =20,n; for(n=0;n<=i;) {int i=10; i++; } printf("%d", i); Technical How many times is the for loop executed for(i=0;i<10;i++); a. 1

b. 10 c. compiler error d. not executed

How many times is the for loop executed for(i=0;i<10;i++); a. 1 b. 10 c. compiler error d. not executed for selection, we use

a .if..else b .for loop c. while loop d..... Which of the following is executed 1rst? i .&& ii.|| iii.! a. i b. ii c. iii d. all are equal To find o/p of a recursive pgm, function where in parameters are passed by value,reference......function used in ansi computers to clear the screen is: a. clrsc b. clear c. clescr d. none of the above

hello friends, i am SATENDER KUMAR

i am b.tech 4th year(ec) student of kec ghaziabad, huawei visited the kiet campus on 26th february, it was an combined campus for kec and kiet, the recruitment procedure included the following phases: 1. Written test. 2. Technical interview. 3. H.R. interview. Written test: The written test included the aptitude as well as the technical part. 1.Some students are standing in a cirle in which 6th and the 16th student are standing opposite to each other. find how many students were present there. 2.Two cube intersect then which of the following is never made: a)rectangle b)triangle c)cube d)none of these 3. Average of 9 numbers is M, avg of 3 nos is N, avg of rest of the nos is P,then what is the equation formed. 4. A ladder was rested along a wall of height 5m. If ladder slides 2m away from the wall then ladder touches the foot of the wall.What is the height of the ladder. 5 A boy gets some rupees from his mother and spends them on 5 stores. He spends one rupee more than half of the money. How much money he had at the time of entering the shop. 6. 311311311311311311 is divisible by: a)3 and 11. b)11 but not 3. c)3 but not 11. d)none of the above. 7. If a rainy day occurs on every 10th day and each rainy day accounts for half rainbow then in 20 days what is the percentage of days when rainbow doesn't takes place. 8. A man works continuosly for 8 days and then takes rest on the 9th day. If he starts on monday then on which day he will take 12th rest. 9. Its 27 min past 10. How many minutes would it take to cover 12 noon. Technical: 1. In a transistor in active region there is a relation:

a) IB = BIC b) IC = BIB c) IC = IB d) none of these. 2.For preservation of food we need a) salt b) formaldehyde c) sugar d) none of these 3) what is dry ice. 4) Ammeter 25-0-25mA then what is the sensitivity of ammeter. 5) Which layer is not in OSI layer: a)physical b)data link c)network d)transmission 6) If carrier is modulated 100 % then what is the percentage increment of power: a)50 b)100 c)0 d)none 7) Convert (17)10 to binary. 8) (375)10 = ()8 9) During a day at which time most distortion takes place. There were no questions asked from optical fiber. HUAWEI PAPER ON 28th FEB 2009 Hi frnds, i m Ashutosh Gupta from Jaypee Institute of Information Technology University, Noida. we had campus recruitment of HUAWEI on 28th feb 2009. I would lik to share my experienc which ll help u to get throug huawei. Total 259 students had attended written test then 59 has cleared it and finaly 12 had got placement. i m happy that i m also one among them. SELECTION PROCEDURE: 3 rounds-

1.written , 2.technical, 3. HR. WRITTEN TEST (30ques, 30 mins)

thr was 3 sets in written test its of 3 sections namely 1.aptitude(10 ques) 2.technical(15 ques) 3.english(5 ques) APTITUDE: ques related to age, business, nd odd one out etc.

TECHNICAL: it had 15 questions. ques related to networks, basic communication, mobile comm, antenna theory, semiconductor etc. was asked.. ENGLISH: 5 ques of antonyms was asked in this section TECHNICAL ROUND: after clearing written i enterd into tech hr room with a smile.1 male and 1 female interviewer was thr. They asked me to sit nd i thanked them. they asked my resume n then askd ques based my resume. int: introduce urself. me: answerd starting with my name, my family background, my achivements, xtra curricular activities etc. then they asked me abt my area of intrest...i replied, mobile communication nd optical communication then they started wid mobile comm, like wht do u knw abt GSM, architecture of GSM, interfaces used in GSM nd GPRS, diff among GPRS, GSM, CDMA and 3-G technology. then they asked me abt the Data communication like OSI model, TCP/IP protocol.....but i was nt able to giv these answers correctly nd i told them that i dont hav much knwledge abt the data comm. then they asked me abt the optical comm, like advantages of optical comm, abt optical fiber then they started to ask me abt my training. Actually i hav done my training in optical network solution field. So they asked me abt the optical solution nd told me to draw a diagram any of the optical network solution. Then i made the dig of repeater solution....nd explained abt that.... then they asked me some general ques.....like why u wanna join huawei etc. then after they told me to wait outside for the result....

HR ROUND : 10 mins after completion of my tech interview, they called me for HR. I entered in the room. thr was agn 2 HR persons...1 female nd 1 male interviewer. I said good evening to them nd they asked me to sit...i took the seat after thanking them. then she asked me to tell something abt myself. i answered. then she asked me vry basic ques of HR likewhy u wanna join HUAWEI ? wht do u knw abt the company ? wht r ur hobbies ? wht abt the placement offers which u already had ? abt strenghts, abt weakness, do u hav any gal frnd or not ? do u knw wht type of job we will provide u ? r u ready to go for field work like BTS nd BSC installation ? etc.. then at last she asked me that do u hav ny question ? nd thats it.....thn i will come outside....

After 3-4 hours the result was declared. Total 12 students had been selected nd by GOD's grace i was also one among them. It was the most happiest moment of my life. Becoz frm the starting of my engg, i wanted to go in a telecom based company. Best of luck to u all....hope to meet u in HUAWEI...

HUAWEI PAPER ON 2nd APRIL 2008 Hi frindzz, i m sathiyaseelan from TPGIT(Thanthai periyar govt. inst. of tech.) vellore. we have off campus on 3rd at VIT, vellore for Huawei one of the giants in telecomm industry. i would lik to share my experienc which ll help u to get throug huawei. its my 15 th interview. 700 students have attended written test then 79 has cleared it and 30 have cleared technical n finaly 18 have got placement. i m happy tat i m also one among them.its extremely happy to work in a core company lik huawei. SELECTION PROCEDURE: 3 rounds namely 1.written , 2.technical, 3. HR. WRITTEN TEST its of 3 sections namely 1.aptitude(10 ques)

2.technical(15 ques) 3.english(5 ques) APTITUDE: its difficult than other 2 sections. ther r no objective type Q's. v sholud calculate n writ answers. !. some consecutive pages r missed in a book whose sum is 9808. find those pages. 2. water melon of 200 kg is kept for selling by a merchand. at morning he find tat 99% of that friuts has water and he found due to hot summer only 98% of water is present in evening.find weight of water melon. ans 198. 3.if the order of vowels r arrangd in reverse order wat ll b in middle. ans.i 4.there are two dads named jhon, vikram. ther r two sons micky, vicky. 4 went to shop and spent some amount. find who is father of vicky.(sorry i dont no it fully) 5.one esculater related problem. 6.123456789=100. using +,-,* signs in between the digits how many no. of ways its possible if in its same order. sorry i cant remember others. TECHNICAL: it has 15 questions. Q's related to signals&systems, fourier transform, networks, basic comm, mobile comm, wireless comm. optical ll b asked. its ec if ur basics r good. ENGLISH: it has 5 q's. tis s easiest section for u if u ve basic grammer skills. TECHNICAL ROUND: after clearing written i enterd into tech hr room with a smile.he asked me to sit n i thanked him. he asked my resume n then askd Q's based my resume. imt: introduce urself. me: answerd wit my achivements, xtra curricular activities etc. say u ll b proud of ur parents. he impressed. int:wat is modulation? types of modulkation?. me: process of changin t charecteristics of carrier wave according to(frequency, amplitude of) messag signal. so type AM,FM xplaind wit diagrams. int: wats PCM? me:pulse code modulation is one of digital modtion schemes. int: how many pins in 8085 mp? me: 40 pins int:describe gsm, cdma with one of advantage? me: gsm has less coverag area, addition of new users (ie t capacity of channel cant b increased). in cdma addition of new users possibly can have comm. link. its coverag earea is high. n explained more. int: about ur project? software ued for project. me: xplaind well. int: r u mobile? ll home sick, food affect u? me: s sir. sinc i m a global profeesional, i can go anywere if it gives opportunities for growth,

learning int: mmm. xcellent. than k u. do u ve any Q's me: s sir. wat kind of trainin & learnin i can expect in tis company? int: ll tell u after givin job offer. i thougt tat i ll cler tech. be confident n answer boldly wit face to face. they ll check ur tech skills in optical comm, networks,mobil&wireless comm, basics of comm. u can clera it very easily. HR ROUND: every hr panel has 1 chinese hr& 1 indian hr. for most of my frinds chinese hr askd lot of Q's. v cant listen wat he tel even 2 times.so i get bit nervous.but thank god chines hr didnt ask even my name n only indian hr askd only few Q's int: tell me bout urself. me:told again n impressd. int: u may work in at 10 pm or at nigh, R u ready me: with a smile. sir , i ll suerl go for work if u wake up me even at midnight, as im a fresher i would lik to get a solid expereinc independent of time. int; he laguedn really impressed n said very good. prononc ur name? int:r u mobile? again i answred n impressd hr. i was askedfor only 5 minutes. thank u n wish u all to get throu huawei.

HUAWEI Written Test Test Pattern Consist of Section I. 60 [General Aptitude +Puzzles directly from Summers Book ) 1. 2. 3. From Summers 5-6 Questions.. Analytical Reasoning @ Logical Some 10-15 questions.. Rest of them are aptitutes..

Section II 60 [Teshnical] 1. Mainly consists of full problems in the Communication & ISDN's,

Microprocessor,Digital Circuits question and basic's of electronics... 2. 30 Questions are Computer

Mostly From OS,Networking and Automata concepts (Compiler Concepts). In Os the asked about the Scheduling Problems like they have given the Execution time and elapse time u have to allocate the time for the process... Section III [C prgm] (10-12 from pointers) Section I

1.

In a city, 80% speaks english, 70% speaks hindi and 10% do not speak both. It

was found that 162 people talk both. How many are there in the city? 2. 3. Find the missing number: 0 6 24 X 120 There are 26 pearls in a bag. One among them is less in weight. You have been

given 2 pan weight machine. In how many trials, you will be able to find the defected one? 4. There are 30 socks in a bag. 30% is in blue color. What is the probability to take

two blue socks? 5. In a party, every man has his dog with him. There are 22 heads and 72 legs all

together. How many men & dogs are there? 6. Find the missing number: 0, 0.577, 1, 1.732, ? b.2 c.2.743 d.none

a. 0.656 7.

Two different types of tea are mixed, at 6 Kg of type 1 and 4 Kg of type 2. One

Kg of type 1 is Rs. 6 and that of type 2 is Rs. 7. The seller get 10% profit, by this action. Find at what price, he 'd have sold the mixture/Kg? 8. There are 10 people in a party. "How many other people, you met?" is the

question asked to everyone. First person says 1, Second says 2, Third says 3..........ninth says 9. Now what tenth person 'd have answered? 9. .The Distance between A to B is 1000 miles... A person has 3000 Apples ..He has

to deliver to the market in B , he is carring Maximum of 1000 apples by the camel.. For every mile the camel eats a Apple ...Like that then u have to find out the number of apples that he delivered to the market? 10. In the old era humans used --------- to prevent themself from the attack of

dianosur?(Easy one) 11. Mr x & MRS x and Mr.y and MRS y are playing a chess ..like that then the

chance of winning? ans (MR.y)

C Programming

12. {

void checkA()

int a=2; if(a=3!=3) printf(" 3 "); else printf(" 2 "); return; } ans. 2 13. { char P[]={"Hello World"}; printf(" %s \n",p); main(); } ans (abnormal program termination) 14. # define D 10 main()

# define Y D+10 # define D 30 main(int argc, char *arc[]) { printf(" %d \n",D); } ans.30 15. main() { int i=0; while(TRUE) { printf(" %d \n",i); # define TRUE 0

i++; } printf(" %d \n",i); i++; }

HUAWEI PLACEMENT PAPER 2005 Total Question: 140 Time: 120 min (2 hrs) Section I : 60 [General Aptitude] (from RS Agarwal, GRE, IAS questions, Verbal & Non-Verbal) Section II : 60 [Teshnical] (Data communication, Data Structure, Automata Theory, etc) Section III : 20 [C prgm] (5-7 from I/O, 10 pointers) Section I : 60 ************** 1. Following some pattern, understand the table and find the answer? JANUARY 20 APRIL 10 MAY 5 NOVEMBER 15 JULY ? 2. Find the missing number: 1 10 3 9 5 8 7 7 9 6 ? ? 3. If it was two hours later, it would be half an hour as long until midnight as it will be if it were an hour later. What is the time now? 4. In a city, 80% speaks English, 70% speaks Hindi and 10% do not speak both. It was found that 162 people talk both. How many are there in the city? 5. Find the missing number: 0 6 24 X 120 6. Which is not 'lean year': 1900 2000 1952 1980 7. Find the missing number: J, ?, M, ?, M, J, ?, A, S, O, N, ? 8. There are 27 pearls in a bag. One among them is less in weight. You have been given 2 pan weight machine. In how many trials, you will be able to find the defected one? 4 3 11 13 9. Direct distance between A & B is 200. Direct distance between B & C is 200. Direct distance between C & A? 10. There are 30 socks in a bag. 30% is in blue color. What is the probability to take two blue socks? 11. In a ground, there are two poles in 7 ft & 12 ft respectively. They are 12 ft apart from each other. What is the distance between the edges of two poles? 12. You need to print an document of the area 216 sq cm. Condition is 3 cm margin is to be left at both top & bottom and 2 cm at the sides. What 'd be the optimized size of your paper? 13. In a party, every man has his dog with him. There are 22 heads and 72 legs all together. How many men & dogs are there? 14. Ram writes a number between 1 to 1000. Raja wants to know the number, knowing Ram can answer only yes & no and always speaks truth. What will be the minimum number of questions Raja finds the answer. a. 999 b.10 c.500 d.none 15. How many ways a section of four letter word can be made in complete alphabet? 16. Find the missing number: 0, 0.577, 1, 1.732, ? a. 0.656 b.2 c.2.743 d.none 17. 17171717171.....(101 digits) is divided by 625. What is the answer? 18. Synonym for ZENITH: ridge trough nadir crecent

19-25 RS Agarwal questions from frequetly asked topics (time & dist., work done, problems on numbers, ratio, mixture, calender). 26. June 30, 2004 is wednesday. What is June 30, 1974? 27. Two different types of tea are mixed, at 6 Kg of type 1 and 4 Kg of type 2. One Kg of type 1 is Rs. 6 and that of type 2 is Rs. 7. The seller get 10% profit, by this action. Find at what price, he 'd have sold the mixture/Kg? 28. There are 10 people in a party. "How many other people, you met?" is the question asked to everyone. First person says 1, Second says 2, Third says 3..........ninth says 9. Now what tenth person 'd have answered? 29. Find the missing number: 24 : 15 :: 63 : ? 30. A metal ball weighing 10 gm is droped from 20 meter height tall point. What will be the time to reach ground? 31. All the students of class are told to sit in circle shape. Here the boy at the 6 th position is exactly opposite to 16 th boy. Total number of boys in the class? 32. The average mark of 10 students is 80%. Later it was found that for one student, instead of 60%, the recorded 90%, by mistake. Now the corrected new percentage? Ans: Old % is 80 for 10 ppl. So the total: 800. Difference in correction : 30. So the total : 770 for 10 ppl. (i.e) 770/10= 77%. (New %) C programming: [What will be the output???] ******************* 1. void checkA() { int a=2; if(a=3!=3) printf(" 3 "); else printf(" 2 "); return; } 2. main() { char P[]={"Hello World"}; printf(" %s \n",p); main(); } 3. UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; 4. # define D 10 # define Y D+10 # define D 30 main(int argc, char *arc[]) { printf(" %d \n",D); } 5. # define TRUE 0 main() { int i=0; while(TRUE) { printf(" %d \n",i);

i++; } printf(" %d \n",i); 6. UCHAR j; for(j=0;j<2000;j++); Number of iterations? 7. main() { int a[5]; a[0]=0; a[1]=1; for(i=2 ; i<4 ; i++) a[i] = a[i-1] + a[i-2]; } What are the elements of array? TIPS: ****** Focus only on Sec-I & III. Sec-II will eat up the time and you will be lost. This pattern will meature how well you are good at aptitude.

HUAWEI SAMPLE PAPER Hi Friends, Test consistsof 60 questions with 60 minutes. 40 aptitude and 20 C questions. Aptitude 1. The distance b/w 2 places is 1000 miles and a man has a camel which eats an apple/mile. He has 3000 apples and want to transport from one to another. Camel can take 1000 apples at a time. when reaching the destination how many apples will be with him? 2. How many 3-digit numbers will be there which are divisible by 19? 3. How many 3-digit numbers with atleast one 5 in their digits? 4. find the next term 0, 6, 24, 120, ans:210; each term is obtained by adding multiples of 6 with series 1,3,6,10,15 5. There is 12 perls. One of them is either light or heavy than others. There is a weighing pan. How many trials are needed to find the exceptional one. 6. There is a work which can be completed by A with 12 days and B by 18 days. A and B works together for 3 days and B left. After that how many days for A to complete the work? ans:7 days 7. 1992 Feb have 5 sundays. In which year, the month Feb have 5 sundays next?

8. There are 2 pots each filled with water and milk respectively. Some amount of milk is poured into water pot and then the some amount of mixture in water pot is poured into milk pot. which is true? a. the amount of milk in water pot is greater than the amount of water in milk pot. b. the amount of milk in water pot is less than the amount of water in milk pot. c. the amount of water in milk pot is same as that of amount of milk in water pot. d. cannot be determined. ans:C 9. In a party there are women and cats.There are 18 heads and 72 legs altogether. How many women and cats? 10. The sum of 25 consequtive integers (including negative, positive and zero) is divisible by a. 5 b. 10 c. 25 d. 11. The headquarters of Huawei is at a. Honkong b. Shenzan c. Shanghai d. 12. In olden times man used to avoid attacks of Dinosour a. using fire b. Climbing the tree c. Using weapons d. None of the above ( i don't understand the significance of this question) 13. There is a population of N numbers and each person in the population shakehands with every other person. Which is true? a. If N is even, even no of shakehands b. if N is even, odd no of shakehands c. if N is odd, even no of shakehands d. if N is odd, odd no of shakehands

technical-c

1. which is true? out of 4 options ans is "& operator cannot be applied to register variables"

2. How many additions are done in this pgm for(i=0;i<31;i++) for(j=0;j<31;j++) for(k=0;k<31;k++) d=d+1; 3. i=6720,j=4; for(;i%j==0;){ i=i/j; j=j+1; } print i; what is the output? 4. what is a bit=field? 5. Storage class defines a.scope b.scope and permeance c.permeance d. 6. main(){ int x=0; fun(x); print x; } fun(int x){ x=x+1; print x; } what is the output? 7. Changing some of the bits to a desired pattern is known as a.masking b.Pruning c. d. 8. main{ int i=1; { int i=2; print i; i=i+1; }

print i; } what is the output. 9.whether atleast one function in a C pgm.

Interview Questions

First there is a tech interview and after succeeding this, second is a tech cum HR interview. tell abt Urself. some C pgms are given and find their output. 1. main(){ char *p="Huawei"; printf("%s\n",p); *p++; printf(%s\n",p); } 2. main(){ int x=5,y=7,z; z = x++ + y++; printf("%d\n",z); z = ++x + ++y; printf("%d\n",z); } 3. main(){ int *p; p=(int *)malloc(sizeof(int)*20); memset(p,0,20) or memset(p,20,0) (i don't remember which one) then some code, i don't remember } 4. main(){ int x=4; printf("%d\t%d\t%d",x,x>>2,x<<2); } 5. write a pgm to print 1 121 12321 1234321 6. write a pgm to find the fibinocci series recursively. 7. write a pgm to find the reverse fib series starting from N.

8. Given the Nth fib no and find the (N-1)th fib no without calculating from the beginning 9. Find the next term 60,30,20, and some logical questions second interview questions Tell abt yourself 1. write an optimized pgm to find the smallest of 3 numbers. 2. implement stack operations with pointers with appropriate exception checks. 3. Explain any pgm using semaphores. 4. Find the next term 0,4,18,100,prime number x asx^3-x^2 then some logical questions -HR section 1. what are Ur strengths 2. How many friends in the college 3. is friends include both boys and girls 4. what Ur friends tell about You. 5. is girls and boys tell the same opinion 6. usual Questions abt family 7. is staying in hostel. 8. is already placed in another company? 9. because my ans is yes, then why do you come for Huawei. 10. what do you know about Huawei Bangolore centre? 11. How many employees in bangalore.

HUAWEI PAPER ON 12TH AUGUST AT BANGALORE hi guysi attended huawei test on 12th august test has 2 partsaptitude(20 qustions) c(20 questions) each has the cut off of 10 test was easy just go through c skills is enough.. and aptitide was prety easy on that eveeng result published.. in total 23 got selected for interview.. interview was on huawei office it self.. 13th august my interview schedule was on 11 but i reaced there on 9 30.. on 11 30 intrvew start..

2 guys take the interview. they ask me about c compilation steps( u must be very clear on that) stack queue(u must know implementation) linked list.. some tricky c puzzles(test ur c skill is enough) about my project........ most important is that they will give enough time to answer so think before u answer interview will take more than 1 hour.. after the interview they told me to wait out side.. the hr came and said i have one more interview at 3.3 0 interview was taken by a lady it was a cool interviewshe ask some puzzles but she asked more details about project.. then some common hr questions interview was take nearly 45 minutes.. after that hr again told me there is one more round.. this was for namesake only... it takes only 15 minutes.. an hr told me result will be published tomorow 0n 14th august they published the list in total thaey selected 6 fortunately am one of them.. you know rest 5 guys all have 2 other offer but for me it was one and only offer... so getting in to huawei is very much easy all u have to do is.. 1, sharp ur c knowledge(pointers structures , data structures) 2. be confident on answering.. alll the best guys...... by Deepak

Huawei : Test Paper 4 The number of viewers viewed this company:3252 reads

Previous Papers | Next Papers

Paper Type :General - Interview Test Date : 2 Apr 2008 Posted By : Sathiyaseelan inShare0 HUAWEI PAPER ON 2nd APRIL 2008

Hi frindzz, i m sathiyaseelan from TPGIT(Thanthai periyar govt. inst. of tech.) vellore. we have off campus on 3rd at VIT, vellore for Huawei one of the giants in telecomm industry. i would lik to share my experienc which ll help u to get throug huawei. its my 15 th interview. 700 students have attended written test then 79 has cleared it and 30 have cleared technical n finaly 18 have got placement. i m happy tat i m also one among them.its extremely happy to work in a core company lik huawei. SELECTION PROCEDURE: 3 rounds namely 1.written , 2.technical, 3. HR. WRITTEN TEST its of 3 sections namely 1.aptitude(10 ques) 2.technical(15 ques) 3.english(5 ques) APTITUDE: its difficult than other 2 sections. ther r no objective type Q's. v sholud calculate n writ answers. !. some consecutive pages r missed in a book whose sum is 9808. find those pages. 2. water melon of 200 kg is kept for selling by a merchand. at morning he find tat 99% of that friuts has water and he found due to hot summer only 98% of water is present in evening.find weight of water melon. ans 198. 3.if the order of vowels r arrangd in reverse order wat ll b in middle. ans.i 4.there are two dads named jhon, vikram. ther r two sons micky, vicky. 4 went to shop and spent some amount. find who is father of vicky.(sorry i dont no it fully) 5.one esculater related problem. 6.123456789=100. using +,-,* signs in between the digits how many no. of ways its possible if in its same order. sorry i cant remember others. TECHNICAL: it has 15 questions. Q's related to signals&systems, fourier transform, networks, basic comm, mobile comm, wireless comm. optical ll b asked. its ec if ur basics r good. ENGLISH: it has 5 q's. tis s easiest section for u if u ve basic grammer skills. TECHNICAL ROUND: after clearing written i enterd into tech hr room with a smile.he asked me to sit n i thanked him. he asked my resume n then askd Q's based my resume. imt: introduce urself. me: answerd wit my achivements, xtra curricular activities etc. say u ll b proud of ur parents. he

impressed. int:wat is modulation? types of modulkation?. me: process of changin t charecteristics of carrier wave according to(frequency, amplitude of) messag signal. so type AM,FM xplaind wit diagrams. int: wats PCM? me:pulse code modulation is one of digital modtion schemes. int: how many pins in 8085 mp? me: 40 pins int:describe gsm, cdma with one of advantage? me: gsm has less coverag area, addition of new users (ie t capacity of channel cant b increased). in cdma addition of new users possibly can have comm. link. its coverag earea is high. n explained more. int: about ur project? software ued for project. me: xplaind well. int: r u mobile? ll home sick, food affect u? me: s sir. sinc i m a global profeesional, i can go anywere if it gives opportunities for growth, learning int: mmm. xcellent. than k u. do u ve any Q's me: s sir. wat kind of trainin & learnin i can expect in tis company? int: ll tell u after givin job offer. i thougt tat i ll cler tech. be confident n answer boldly wit face to face. they ll check ur tech skills in optical comm, networks,mobil&wireless comm, basics of comm. u can clera it very easily. HR ROUND: every hr panel has 1 chinese hr& 1 indian hr. for most of my frinds chinese hr askd lot of Q's. v cant listen wat he tel even 2 times.so i get bit nervous.but thank god chines hr didnt ask even my name n only indian hr askd only few Q's int: tell me bout urself. me:told again n impressd. int: u may work in at 10 pm or at nigh, R u ready me: with a smile. sir , i ll suerl go for work if u wake up me even at midnight, as im a fresher i would lik to get a solid expereinc independent of time. int; he laguedn really impressed n said very good. prononc ur name? int:r u mobile? again i answred n impressd hr. i was askedfor only 5 minutes. thank u n wish u all to get throu huawei.

i am abhishek singh, i am b.tech 4th year(ec) student of kec ghaziabad, huawei visited the kiet campus on 26th february, it was an combined campus for kec and kiet, the recruitment procedure included the following phases: 1. Written test.

2. Technical interview. 3. H.R. interview.

Written test: The written test included the aptitude as well as the technical part.

1.Some students are standing in a cirle in which 6th and the 16th student are standing opposite to each other. find how many students were present there.

2.Two cube intersect then which of the following is never made: a)rectangle b)triangle c)cube d)none of these

3. Average of 9 numbers is M, avg of 3 nos is N, avg of rest of the nos is P,then what is the equation formed.

4. A ladder was rested along a wall of height 5m. If ladder slides 2m away from the wall then ladder touches the foot of the wall.What is the height of the ladder.

5 A boy gets some rupees from his mother and spends them on 5 stores. He spends one rupee more than half of the money. How much money he had at the time of entering the shop.

6. 311311311311311311 is divisible by: a)3 and 11. b)11 but not 3. c)3 but not 11. d)none of the above.

7. If a rainy day occurs on every 10th day and each rainy day accounts for half rainbow then in

20 days what is the percentage of days when rainbow doesn't takes place.

8. A man works continuosly for 8 days and then takes rest on the 9th day. If he starts on monday then on which day he will take 12th rest.

9. Its 27 min past 10. How many minutes would it take to cover 12 noon.

Technical:

1. In a transistor in active region there is a relation: a) IB = BIC b) IC = BIB c) IC = IB d) none of these.

2.For preservation of food we need a) salt b) formaldehyde c) sugar d) none of these

3) What is dry ice.

4) Ammeter 25-0-25mA then what is the sensitivity of ammeter.

5) Which layer is not in OSI layer: a)physical b)data link c)network d)transmission

6) If carrier is modulated 100 % then what is the percentage increment of power: a)50 b)100 c)0 d)none

7) Convert (17)10 to binary. 8) (375)10 = ()8 9) During a day at which time most distortion takes place.

There were no questions asked from optical fiber.

out of the 80students who sat for written, 23 got selected for interview. 7 got finally placed. HUAWEI PATTERN - JUN 2003 The huawei paper is real tough. huawei had come to my coll last week for placement. the test is for 2.5 hours. there are 3 sections- apti, tech 'n c. 60 qwes in apti..some fill in the spaces, some english..sentence correction, 1:1 correspondence..puzzles and quants too. 70 qwes in tech section..boolean logic, gates, microwave devices, ttl family, datastructures, control systems.. the C section was easy. 20 qwes.. i was shortlisted..but in the end..5 out of 6 compscis and 0 out of 5 'tronics were taken. the interview will be for 45-60 min..mainly on networking, datastructures, os.. heard they have walk-in for 15 people only everyday. Huawei : Test Paper 13 The number of viewers viewed this company:2129 reads

Previous Papers |

Next Papers :General - other : 27 Sep 2008 : Sruthi

Paper Type Test Date Posted By inShare0

HUAWEI TECHNOLOGIES PAPER 27TH SEPTEMBER,2008


Selection Procedure 1.Aptitude test (Aptitude+C programs) 2.Technical interview ( 2 rounds) 3.HR interview Aptitude Test The aptitude round consist of 40 questions. 20 questions each from aptitude and C programming. The C test consisit of pointers, for loops, comma operators, etc. The time limit was 1 hr. Maths only general logical questions not much from RS aggrawal.
Technical Round After we get through the aptitude round we hav 2 rounds of tech interview. The interview would be mainly C and C++ programming .then they would also ask questions from SQL queries, networking and OS. C questions 1.Write a function to find th nth item from the end of a linked list in asingle pass. 2. Write a function for palindrome and factorial and explain. 3.Difference bw costant poinert and pointer to a constant. 4. int a,b a=(1,2,3); b= 1,2,3; printf(%d,%d, &a,&b); What is the output 5 int i=1; printf(%d%d%d, i, i++, ++i); Swap the values stored in the Int variable a and b without using any temp variable.

6. questions on your projects done. Logical puzzles 1. A man has 2 cows of total cost 200 rs. He sold them for 210. for 1 cow he had a profit of 10% and for the other he had a loss of 10%. Wat is the price of each cow. 2. There are 2 vessels of each 5 and 3 litre. Now we hav to fill a 4litre vessel at a strech using this 5 and 3 l vessel. 3. A man goes to a resturant and spents half the money he had. Before coming out of the restaurant he gives a 1$ tip. Now goes to a shop and spents half the money he is having now . as he comes out of the shop he gives a beggar a 2$. Now he goes to a temle and again spents half the money he

had with him . after that he gives a beggar a 2$ . now at the end he is having a 1$ with him . how much money he had in the start

You might also like