Vyoms OneStopTesting.com - Testing EBooks, Tutorials, Articles, Jobs, Training Institutes etc.
OneStopGate.com - Gate EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
OneStopMBA.com - MBA EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
OneStopIAS.com - IAS EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
OneStopSAP.com - SAP EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
OneStopGRE.com - of GRE EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
Bookmark and Share Rss Feeds

Sponsored Ads
Hot Jobs
Fresher Jobs
Experienced Jobs
Government Jobs
Walkin Jobs
Placement Section
Company Profiles
Interview Questions
Placement Papers
Resources @ VYOMS
Companies In India
Consultants In India
Colleges In India
Exams In India
Latest Results
Notifications In India
Call Centers In India
Training Institutes In India
Job Communities In India
Courses In India
Jobs by Keyskills
Jobs by Functional Areas
Learn @ VYOMS
GATE Preparation
GRE Preparation
GMAT Preparation
IAS Preparation
SAP Preparation
Testing Preparation
MBA Preparation
News @ VYOMS
Freshers News
Job Articles
Latest News
India News Network
Interview Ebook
Get 30,000+ Interview Questions & Answers in an eBook.
Interview Success Kit - Get Success in Job Interviews
  • 30,000+ Interview Questions
  • Most Questions Answered
  • 5 FREE Bonuses
  • Free Upgrades

VYOMS TOP EMPLOYERS

Wipro Technologies
Tata Consultancy Services
Accenture
IBM
Satyam
Genpact
Cognizant Technologies
 Home » Placement Papers  »Huawei Technologies »HUAWEI SAMPLE PAPER
 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
         1 2 1
       1 2 3 2 1
     1 2 3 4 3 2 1
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.

 

Sponsored Ads



Interview Questions
HR Interview Questions
Testing Interview Questions
SAP Interview Questions
Business Intelligence Interview Questions
Call Center Interview Questions

Databases

Clipper Interview Questions
DBA Interview Questions
Firebird Interview Questions
Hierarchical Interview Questions
Informix Interview Questions
Microsoft Access Interview Questions
MS SqlServer Interview Questions
MYSQL Interview Questions
Network Interview Questions
Object Relational Interview Questions
PL/SQL Interview Questions
PostgreSQL Interview Questions
Progress Interview Questions
Relational Interview Questions
SQL Interview Questions
SQL Server Interview Questions
Stored Procedures Interview Questions
Sybase Interview Questions
Teradata Interview Questions

Microsof Technologies

.Net Database Interview Questions
.Net Deployement Interview Questions
ADO.NET Interview Questions
ADO.NET 2.0 Interview Questions
Architecture Interview Questions
ASP Interview Questions
ASP.NET Interview Questions
ASP.NET 2.0 Interview Questions
C# Interview Questions
Csharp Interview Questions
DataGrid Interview Questions
DotNet Interview Questions
Microsoft Basics Interview Questions
Microsoft.NET Interview Questions
Microsoft.NET 2.0 Interview Questions
Share Point Interview Questions
Silverlight Interview Questions
VB.NET Interview Questions
VC++ Interview Questions
Visual Basic Interview Questions

Java / J2EE

Applet Interview Questions
Core Java Interview Questions
Eclipse Interview Questions
EJB Interview Questions
Hibernate Interview Questions
J2ME Interview Questions
J2SE Interview Questions
Java Interview Questions
Java Beans Interview Questions
Java Patterns Interview Questions
Java Security Interview Questions
Java Swing Interview Questions
JBOSS Interview Questions
JDBC Interview Questions
JMS Interview Questions
JSF Interview Questions
JSP Interview Questions
RMI Interview Questions
Servlet Interview Questions
Socket Programming Interview Questions
Springs Interview Questions
Struts Interview Questions
Web Sphere Interview Questions

Programming Languages

C Interview Questions
C++ Interview Questions
CGI Interview Questions
Delphi Interview Questions
Fortran Interview Questions
ILU Interview Questions
LISP Interview Questions
Pascal Interview Questions
Perl Interview Questions
PHP Interview Questions
Ruby Interview Questions
Signature Interview Questions
UML Interview Questions
VBA Interview Questions
Windows Interview Questions
Mainframe Interview Questions


Copyright © 2001-2024 Vyoms.com. All Rights Reserved. Home | About Us | Advertise With Vyoms.com | Jobs | Contact Us | Feedback | Link to Us | Privacy Policy | Terms & Conditions
Placement Papers | Get Your Free Website | IAS Preparation | C++ Interview Questions | C Interview Questions | Report a Bug | Romantic Shayari | CAT 2024

Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |


Copyright ©2001-2024 Vyoms.com, All Rights Reserved.
Disclaimer: VYOMS.com has taken all reasonable steps to ensure that information on this site is authentic. Applicants are advised to research bonafides of advertisers independently. VYOMS.com shall not have any responsibility in this regard.