How would you secure your Web API
Principal Engineer Interview Questions
4,341 principal engineer interview questions shared by candidates
What code repositories have you used
What CI tool have you used
Aside from the usual types of interview questions what stood out was being given a programming problem 48 hours before the in-person interview. The instruction were clear that a range of solutions were possible and functioning code was not mandatory.
system design: designing a system for keeping track of user statuses
Any challenges faced and how it got handled effectively
Write programs.
What would you do if you found an infected host on your network and how would you stop it's spread? (No details were given on what tools or equipment the customer may have)
Similar to other ones posted in glass door already. Snake game, voting system, feature flag system, go through projects in detail, values etc etc
Implement a method 'find' that will find the starting index (zero based) where the second list occurs as a sub-list in the first list. It should return -1 if the sub-list cannot be found. Arguments are always given, not empty. Sample Input 1 list1 = (1, 2, 3) list2 = (2, 3) Sample Output 1 1 Explanation As second list (2, 3) is sub-list in first list (1, 2, 3) at index 1 Sample Input 2 list1 = (1, 2, 3) list2 = (3, 2) Sample Output 2 -1
Viewing 521 - 530 interview questions