HUAWEI:: PLACEMENT PAPER
----------------------------------------------------

Total Question: 140 Time: 120 min (2 hrs)
Section I :[General Aptitude, Verbal & Non-Verbal)
Section II :[Technical ] (DS, Communication, Information Theory, etc)
Section III :[C program] ( I/O, pointers)

Section I :
------------------------------
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 a leap 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 weighing machine. In how many trials, you will be able to find the defected one?

9. Direct distance between A & B is 200. Direct distance between B & C is 200. Direct distance between C & A?

10. There are 30 socksin 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 a 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 will 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. Raju writes a number between 1 to 1000. Raja wants to know the number, knowing Raju 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 remainder?

18. June 30, 2004 is Wednesday. What is June 30, 1974?

19. 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 gets 10% profit, by this action. Find at what price, he ,d have sold the mixture/Kg?

20. 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 would have answered?

21. Find the missing number: 24 : 15 :: 63 : ?

22. A metal ball weighing 10 gm is dropped from 20 meter height tall point. What will be the time to reach ground?

23. 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. What is the 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?



SECTION II

C PROGRAMMING
---------------------------------------
[What will be the output of the following code?]
-----------------------------------------------------------------
1. void check()
{
int a=2;
if(a=3!=3)
printf(" 3 ");
else
printf(" 2 ");
return;
}

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

3.
main();
{
INT 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?


8. How many times is the for loop executed
for(i=0;i<10;i++);
a. 1
b. 10
c. Compiler error
d. not executed
9. for selection, we use
a if..else
b for loop
c. while loop
d. none
10.Which of the following is executed 1rst?
i .&& ii.|| iii.!
a. i
b. ii
c. iii
d. all are equal
11.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

Stumble Upon Toolbar

Related Posts by Categories



Widget by Hoctro | Jack Book

Comments (0)