Showing posts with label PLACEMENT PAPERS. Show all posts
Showing posts with label PLACEMENT PAPERS. Show all posts

Saturday, May 28, 2011

1

Huawei interview questions 2011 huawei interview questions from c interview questions with answers

  • Saturday, May 28, 2011
  • tech
  • These are some of the interview questions that were asked during my huwaei interview on 28-05-2011
    1.what are the different datatypes?
    2.tell about malloc?
    3.difference between arrray and linked list?
    4.what is stack?what is heap?
    5.what is volatile embedded c?
    6.write the output of programme
    switch(1)
    {
    case 1:printf(“1”):
    case 2:printf(“2”);
    default:printf(“default”):
    }
    7.what is function?
    8.what is a process in OS?
    9.questions about project,seminar?
    10.what is size of int,and what are formatting types for int?
    11.what is pointer?
    12.what is the size of int *ptr and char *ptr?

    tags:huawei interview questions with answers  huawei latest interview questions 2011
    Read more...
    2

    huawei aptitude questions and answers 2011 huawei latest aptitude questions with answers huawei placement papers 2011 huawei test pattern 2011

  • tech
  • These are some of the questions that where asked in the huawei test conducted on 27-05-2011.
    Huawei aptitude test Pattern:
    The question paper consist of two sections:20 general aptitude questions and 20 C Aptitude questions.
    Following are some questions i remember
    1.Three ants are there in 3 corner of a triangle.they started moving randomly.what is the probability that they meet.
    a:100%
    b:50%
    c:75%
    d:25%
    2.How many squares in a chess board?
    a:64
    b:128
    c:204
    d:206
    3.A Ball is dropped from 8 m height.it rebounds to half the height when it hits the ground.WHat is the didtance travelled by the ball before it hits the ground?
    a:23
    b:24
    c:12
    d:16
    ans:A
    4.what is the angle between hour and minute hand when the time is 7:20
    a:100
    b:110
    c:90
    d:80
    C Aptitude questions
    find the output
    1.void main()
    {
    int const * p=5;
    printf("%d",++(*p));
    }
    2.void main()
    {
    float me = 2.1;
    double you = 2.1;
    if(me==you)
    printf("equal");
    else
    printf("not equal");
    }
    3.#include
    #define a 10
    main()
    {
    #define a 20
    printf("%d",a);
    }
    ans:20
    4.main()
    {
    static int a = 5;
    printf("%d ",a--);
    if(a)
    main();
    }
    ans:54321

    tags:huawei test pattern 2011 huawei placement papers huawei aptitude questions and answers 2011 huawei latest aptitude questions with answers huawei placement papers 2011 huawei test pattern 2011
    Read more...