Upload Button Icon Add office photos

Western Digital

Compare button icon Compare button icon Compare

Filter interviews by

Western Digital Embedded Testing Engineer Interview Questions and Answers for Experienced

Updated 20 Jun 2020

Western Digital Embedded Testing Engineer Interview Experiences for Experienced

1 interview found

I applied via Naukri.com and was interviewed in Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. C,c++

Interview Preparation Tips

Interview preparation tips for other job seekers - Currently I lost my job, so searching new jobs

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. All technical questions raised

Senior Engineer Interview Questions & Answers

HP India user image Abhishek Bandejia

posted on 5 Feb 2015

Interview Questionnaire 

2 Questions

  • Q1. Coding questions on data structures and oops
  • Q2. Various questions on cv, projects, por's, etc

Interview Preparation Tips

Round: Test
Experience: Questions were normal like any other aptitude or coding tests.
Tips: Time given was enough for other sections but you need to hurry a little in aptitude part.
Duration: 60 minutes
Total Questions: 60

Round: Technical Interview
Experience: The questions were basic, some where well known like reversing a link list using recursion, designing of car parking lot using concept of oops, find tree height/diameter, etc.
Tips: 1. They ask you to write complete code on paper. This sometimes turn out to be a challenging task when you don't have compiler to correct you on basic things. Practice writing codes on paper.
2. They surely ask questions on oops, like polymorphism, inheritance, etc. besides their definition, also practice writing sudo codes to explain them

Round: HR Interview
Experience: Mainly i was asked questions on my internship experience and POR's.
Tips: They will try to grill you on some questions like 'Why we should hire you?', have a clear reason in your mind. Your other answers should not contradict with your reasons

General Tips: I don't know about other colleges but HP recruits small number of students from my university. Coding questions were average level and can easily be tackled. Many students were rejected after HR interview so don't take it lightly. They do grill you in a very good style if they are in doubt about your selection
Skills: willingness, Enthusiasm, Coding skills, Aptitude skills
College Name: IIT Guwahati

Interview Questionnaire 

1 Question

  • Q1. Stge concepts, vSAN, RAID, basic testing, OS concepts, NVMe, SATA, SAS

I applied via Walk-in and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About my last job description

Interview Preparation Tips

Interview preparation tips for other job seekers - Says limited and point to point thing, and be clear....

I applied via Company Website and was interviewed before Oct 2021. 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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. Core Java and Spring boot questions
  • Q2. Hibernate, Spring, Junit, Mockito and Micro service questions
  • Q3. Difference between String and StringBuffer
  • Ans. 

    String is immutable while StringBuffer is mutable.

    • StringBuffer is faster for concatenation operations.

    • StringBuffer has methods to modify the string.

    • StringBuffer is thread-safe while String is not.

    • StringBuffer has a larger memory footprint than String.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Internal Structure of hashmap and hashing algorithm
  • Ans. 

    Explanation of internal structure of hashmap and hashing algorithm

    • Hashmap is a data structure that stores key-value pairs using a hash function

    • Hashing algorithm converts the key into an index in the array

    • Collisions can occur when two keys map to the same index

    • Chaining and open addressing are two methods to handle collisions

    • Load factor determines when to resize the hashmap

  • Answered by AI
  • Q2. Difference between predicate and supplier
  • Ans. 

    Predicate is a functional interface that takes an argument and returns a boolean value. Supplier is a functional interface that takes no argument and returns a value.

    • Predicate is used for filtering or testing a condition on an object.

    • Supplier is used for providing a value or generating a value.

    • Predicate takes an argument and returns a boolean value based on the condition.

    • Supplier takes no argument and returns a value.

    • E...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Pease focus on core java basics, oracle basics, spring data jpa basics, spring boot and micro services

Skills evaluated in this interview

I applied via Referral and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Basic networking theory like arp, ping, vlans, subnetting
  • Q2. Switching scenarios mostly related to STP
  • Q3. OSI layer based questions. For example, which layer deals with congestion control.
  • Q4. Basics of routing. Ospf n bgp scenarios
  • Q5. One of the challenging cases worked on
  • Ans. 

    Developed a solution for optimizing a complex algorithm for a client in the finance industry

    • Client had a large dataset that needed to be processed quickly

    • Implemented parallel processing to speed up the algorithm

    • Optimized the code to reduce memory usage

    • Collaborated with the client to fine-tune the algorithm for their specific needs

  • Answered by AI
  • Q6. Scenarios questions to check how you would approach a problem and work towards resolution. Like what all information would you ask from the customer to understand the issue and how you would make use of it...

Interview Preparation Tips

Interview preparation tips for other job seekers - Having a concrete networking experience and understanding would help you to crack the interview easily.
The scenarios are not tough and are basically put to check if you know the basics.

I applied via Walk-in and was interviewed before Dec 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Only experience .

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 tips
Round 2 - Coding Test 

Graph algorithm questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Networking graph sql
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was 1 coding question with 10 test cases. They asked a question based on binary search. I got 3 hrs to clear that test. I went in as a campus fresher. For lateral joinees, it is a much more difficult question that you have to clear in 4hrs.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What's the best way to find majority element in an array?
  • Ans. 

    The best way to find the majority element in an array is by using the Boyer-Moore Voting Algorithm.

    • Initialize a candidate variable and a count variable.

    • Iterate through the array and for each element:

    • - If the count is 0, set the current element as the candidate.

    • - If the current element is the same as the candidate, increment the count.

    • - Otherwise, decrement the count.

    • After the iteration, the candidate will be the ...

  • Answered by AI
  • Q2. Reverse a linked list in K groups.
  • Ans. 

    Reverse a linked list in K groups

    • Iterate through the linked list in groups of size K

    • Reverse each group of nodes using a temporary pointer

    • Connect the reversed groups to form the final reversed linked list

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Samsung Research Senior Engineer interview:
  • DSA
  • Algorithms
Interview preparation tips for other job seekers - Have strong DSA skills.

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Dell Interview Questions
3.9
 • 391 Interviews
OPPO Interview Questions
4.0
 • 216 Interviews
LG Electronics Interview Questions
4.0
 • 203 Interviews
Vivo Interview Questions
4.1
 • 198 Interviews
Blue Star Interview Questions
4.1
 • 167 Interviews
Philips Interview Questions
3.8
 • 158 Interviews
Daikin Interview Questions
4.1
 • 152 Interviews
HP India Interview Questions
4.1
 • 142 Interviews
Apple Interview Questions
4.3
 • 140 Interviews
Samsung Research Interview Questions
3.1
 • 133 Interviews
View all
Western Digital Embedded Testing Engineer Salary
based on 5 salaries
₹3.2 L/yr - ₹13.3 L/yr
26% more than the average Embedded Testing Engineer Salary in India
View more details
Staff Engineer
316 salaries
unlock blur

₹15 L/yr - ₹40 L/yr

Principal Engineer
203 salaries
unlock blur

₹20 L/yr - ₹59 L/yr

Senior Engineer
147 salaries
unlock blur

₹13.3 L/yr - ₹25.2 L/yr

Test Engineer
133 salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

Senior Software Engineer
75 salaries
unlock blur

₹10 L/yr - ₹25 L/yr

Explore more salaries
Compare Western Digital with

Vivo

4.1
Compare

OPPO

4.0
Compare

Dell

3.9
Compare

LG Electronics

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