About my previous experience and questions related to difficulties I faced in my previous job and how I was able to overcome them.
Validation Engineer Interview Questions
2,514 validation engineer interview questions shared by candidates
Differential SIgnal Theory
Design a 2-to-1 mux using nand gates
How would you debug this circuit if it starts to fail?
PLL related questions
resume questions
Edge detector, and some personality questions.
Tell me about a project you’ve had in the past that gave you a different outcome.
What’s your experience with validations?
# Given an array of random numbers, push all the zeroes of a given array to the end of the array. For example, if the given array is {1, 9, 8, 4, 0, 0, 2, 7, 0, 6, 0}, it should be changed to {1, 9, 8, 4, 2, 7, 6, 0, 0, 0, 0}. The order of all other elements should be same. Expected time complexity is O(n) and extra space is O(1). # Input : arr[] = {1, 2, 0, 4, 3, 0, 5, 0}; # Output : arr[] = {1, 2, 4, 3, 5, 0, 0, 0}; # Input : arr[] = {1, 2, 0, 0, 0, 3, 6}; # Output : arr[] = {1, 2, 3, 6, 0, 0, 0};
Viewing 1941 - 1950 interview questions