Upload Button Icon Add office photos

Huawei Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Huawei Technologies Developer Interview Questions and Answers

Updated 23 Feb 2023

Huawei Technologies Developer Interview Experiences

2 interviews found

Developer Interview Questions & Answers

user image Anonymous

posted on 23 Feb 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Group Discussion 

Online interview, One chine people will take interview they will tell you explain your project, how much time taken , and challenges within 3 min.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Online interview where one senior team member will take our coding interview basically they will check only logic and your basic coding.
  • Q2. 1-Your project 2- basic coding syntax and logic

Interview Preparation Tips

Interview preparation tips for other job seekers - Works load is high for every department. But you can learn lot of things

Developer Interview Questions & Answers

user image Anonymous

posted on 8 Jun 2015

Interview Preparation Tips

Round: Technical Interview
Experience: Q. To find a non-duplicate number in an array of unknown size with each number having its duplicate except one.
S. XOR all numbers, in the end we are left with the non-duplicate
Q. find the middle element of the linked list of unknown size.
S. Take two pointers. one traverses one step at a time and second traversing 2 steps at a tym.

Round: HR Interview
Experience: All about my future goals and my projects.

College Name: IIT PATNA

Developer Interview Questions Asked at Other Companies

asked in HARMAN
Q1. Which programming language do you use regular in work
Q2. Given a 2 dim array, find an element which is the maximum in its ... read more
asked in HARMAN
Q3. What step do you take to ensure accurate estimates for project
Q4. Solve the problems: Write a formula to display A if A is present, ... read more
Q5. Can you describe “method overloading” versus “method overriding”? ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude duration One hours
Level moderate

Round 2 - Coding Test 

Coding Test Duration 3 hours
Level moderate to hard

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About the plsql..like functions.cursors.pakages and like that

Interview Preparation Tips

Interview preparation tips for other job seekers - from my experience its some meaning ful interested one..but after got selected...they will not respond on any support..like joining or about the assets setup and not even the situvations...as per my experience i really have a bad experience with rmg and also hr team..ultimatix login and all are not that quick responsive...as per mine ..not prefer tcs..

Interview Questionnaire 

11 Questions

  • Q1. Difference between function and store procedure?
  • Ans. 

    Functions return a value while stored procedures do not.

    • Functions can be used in SQL statements while stored procedures cannot.

    • Functions can be called from within stored procedures.

    • Functions can be used in views while stored procedures cannot.

    • Functions can have input parameters while stored procedures can have both input and output parameters.

  • Answered by AI
  • Q2. What is unique key
  • Ans. 

    A unique key is a field or combination of fields in a database table that uniquely identifies each record.

    • A unique key ensures that no two records in a table have the same values for the specified field(s).

    • It can be a single field or a combination of fields.

    • It is used to enforce data integrity and prevent duplicate records.

    • Examples include primary keys, candidate keys, and alternate keys.

  • Answered by AI
  • Q3. How many types of joining?exmplae
  • Ans. 

    There are four types of joining in SQL: Inner Join, Left Join, Right Join, and Full Join.

    • Inner Join returns only the matching rows from both tables.

    • Left Join returns all the rows from the left table and matching rows from the right table.

    • Right Join returns all the rows from the right table and matching rows from the left table.

    • Full Join returns all the rows from both tables, with NULL values in the columns where there ...

  • Answered by AI
  • Q4. What is constraint?
  • Ans. 

    A constraint is a limitation or restriction on something.

    • Constraints can be applied in various fields such as software development, engineering, and project management.

    • In software development, constraints can include limitations on memory usage, processing speed, and storage capacity.

    • In engineering, constraints can include limitations on materials, dimensions, and weight.

    • In project management, constraints can include l...

  • Answered by AI
  • Q5. What is asp.net life cycle?
  • Ans. 

    ASP.NET life cycle is the series of events that occur during the processing of a request.

    • ASP.NET life cycle includes stages like initialization, page rendering, and disposal.

    • During initialization, the page and its controls are created and initialized.

    • During page rendering, the page is processed and HTML is generated.

    • During disposal, resources used by the page are released.

    • Events like Page_Load and Page_PreRender occur ...

  • Answered by AI
  • Q6. What is the view state?
  • Ans. 

    View state is a hidden state of the page that stores values of controls and other page-specific data.

    • View state is used to maintain the state of server-side controls between postbacks.

    • It is stored in a hidden field on the page and is encrypted for security purposes.

    • View state can be disabled to improve performance, but this may cause issues with control state.

    • Example: A user fills out a form, but then navigates away fr...

  • Answered by AI
  • Q7. What is session?
  • Ans. 

    Session is a way to store and retrieve user data between HTTP requests.

    • Session is a temporary storage of user data on the server side.

    • It is identified by a unique session ID which is stored in a cookie or URL parameter.

    • Session data can be used to maintain user state, such as login status or shopping cart contents.

  • Answered by AI
  • Q8. What is response.redirect?
  • Ans. 

    response.redirect is a method used in web development to redirect the user to a different URL.

    • response.redirect is used to redirect the user to a different URL

    • It is commonly used in web applications to redirect users after a successful login or when accessing restricted pages

    • The method can be used with different programming languages and frameworks, such as ASP.NET, PHP, and Node.js

    • The redirected URL can be specified a

  • Answered by AI
  • Q9. What is querry string ?how we use that?
  • Ans. 

    A query string is a part of a URL that contains data to be passed to a web server.

    • It starts with a question mark (?) and is followed by key-value pairs separated by ampersands (&).

    • It is commonly used to filter or sort data on a web page.

    • Example: www.example.com/search?q=apple&category=fruit

    • To use it, simply append the query string to the end of the URL.

  • Answered by AI
  • Q10.  what is polymerphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Bird. Each child class can have its own implementation of the method 'makeSound'.

    • Polymorphism makes code more flexibl

  • Answered by AI
  • Q11. Tell me 4 pillars of c++?
  • Ans. 

    The 4 pillars of C++ are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together to prevent external interference.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and methods.

    • Polymorphism: Using a single interface to represent multiple types of objects.

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I surprised with one question that is are u ready to do job in anywhere

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi guys I just suggest you that you have to focus on your resume and don't use the words which you don't know if you release a word which you don't know then hr will take that word so prepare well for TR and HR I hope my suggestion will helpful

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Q2. Why should I hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.

I applied via tcs and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java based

Interview Preparation Tips

Interview preparation tips for other job seekers - good
Contribute & help others!
anonymous
You can choose to be anonymous

Huawei Technologies Interview FAQs

How many rounds are there in Huawei Technologies Developer interview?
Huawei Technologies interview process usually has 3 rounds. The most common rounds in the Huawei Technologies interview process are Resume Shortlist, Group Discussion and One-on-one Round.
How to prepare for Huawei Technologies Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Huawei Technologies. The most common topics and skills that interviewers at Huawei Technologies expect are Algorithms, Angular, Go, Java and Javascript.
What are the top questions asked in Huawei Technologies Developer interview?

Some of the top questions asked at the Huawei Technologies Developer interview -

  1. Online interview where one senior team member will take our coding interview ba...read more
  2. 1-Your project 2- basic coding syntax and lo...read more

Recently Viewed

SALARIES

E-RING IT SOLUTIONS

INTERVIEWS

Ramco Systems

No Interviews

LIST OF COMPANIES

Cerium Systems

Locations

INTERVIEWS

GE Healthcare

No Interviews

INTERVIEWS

Ramco Systems

No Interviews

INTERVIEWS

Huawei Technologies

No Interviews

SALARIES

DeCurtis Corporation

SALARIES

Constelli Signals

INTERVIEWS

Huawei Technologies

No Interviews

INTERVIEWS

GE Healthcare

No Interviews

Tell us how to improve this page.

Huawei Technologies Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Samsung Interview Questions
3.9
 • 545 Interviews
Ericsson Interview Questions
4.1
 • 411 Interviews
Cisco Interview Questions
4.1
 • 371 Interviews
Nokia Interview Questions
4.1
 • 267 Interviews
Qualcomm Interview Questions
3.8
 • 255 Interviews
BT Group Interview Questions
3.9
 • 180 Interviews
Apple Interview Questions
4.3
 • 137 Interviews
Verizon Interview Questions
4.1
 • 110 Interviews
Xiaomi Interview Questions
3.8
 • 87 Interviews
View all
Huawei Technologies Developer Salary
based on 4 salaries
₹4.9 L/yr - ₹5.5 L/yr
33% less than the average Developer Salary in India
View more details
Senior Engineer
438 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
360 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
277 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
224 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Engineer
197 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Huawei Technologies with

Samsung

3.9
Compare

Apple

4.3
Compare

Cisco

4.1
Compare

Ericsson

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview