If your are a terrorist or not?
Computer Specialist Interview Questions
5,373 computer specialist interview questions shared by candidates
(1) Back-propagation; (2) overfit vs underfit; (3) implementation of one of the steps in Canny edge detection using graphs; (4) closed form formula to solution of linear regression; (5) write code for K nearest neighbor algorithm (6) vanishing gradient vs exploding gradients due to choice to relu() vs sigmoid()
about yourself
Typical questions about my experience, how I got along with co-workers and management in the past, how I handled difficult situations.
How confident you are in learning new things and adaptive yourself to changing needs
What were you previous job duties?
The second question asks you to refactor a function in O(n^2) and make it O(n), basically by eliminating the nested for-loop. This is the function you're asked to refactor: int solution(int *A, int N) { int result = 0; int i, j; for (i = 0; i < N; i++) for (j = 0; j < N; j++) if (A[i] == A[j]) if (abs(i - j) > result) result = abs(i - j); return result; }
Why does one use MSE as a measure of quality. What is the scientific/mathematical reason for the same?
How would you scale your services?
Do you think you are the one that we are looking for?
Viewing 21 - 30 interview questions