Operations Engineering Manager Interview Questions

11,369 operations engineering manager interview questions shared by candidates

code in the language of your choice: A site has 4,320,000 users. The users are sequentially numbered -- each user has a user_id between 1 and 4320000. You want to slowly roll out a new feature to all users, at a consistent rate of X users per second. The roll-out should start at noon today, beginning with the newest user (id 4320000). The rollout should last two days, so user_id 1 gets the feature around noon two days from now. $Write a function to determine whether the feature is currently enabled for a given user_id: can_use_new_feature(int user_id) -> bool.
avatar

Director of Site Reliability Engineering

Interviewed at Tumblr

3.9
Apr 2, 2014

code in the language of your choice: A site has 4,320,000 users. The users are sequentially numbered -- each user has a user_id between 1 and 4320000. You want to slowly roll out a new feature to all users, at a consistent rate of X users per second. The roll-out should start at noon today, beginning with the newest user (id 4320000). The rollout should last two days, so user_id 1 gets the feature around noon two days from now. $Write a function to determine whether the feature is currently enabled for a given user_id: can_use_new_feature(int user_id) -> bool.

This isn't really the most difficult question i've ever heard but... Say you have the following classes class A { public String doIt() { return "A"; } } class B extends A { public String doIt() { return "B"; } } class C { public static String doIt() { return "C"; } } class D extends C { public static String doIt() { return "D"; } } Now consider the following code snippet A b = new B(); String s1 = b.doIt(); C d = new D(); String s2 = d.doIt(); What will be the values of s1 and s2?
avatar

Engineering

Interviewed at Charles River Development

3.7
Dec 27, 2011

This isn't really the most difficult question i've ever heard but... Say you have the following classes class A { public String doIt() { return "A"; } } class B extends A { public String doIt() { return "B"; } } class C { public static String doIt() { return "C"; } } class D extends C { public static String doIt() { return "D"; } } Now consider the following code snippet A b = new B(); String s1 = b.doIt(); C d = new D(); String s2 = d.doIt(); What will be the values of s1 and s2?

"I hate my job"... Its a statement the main manager of the highest paid engineers will just say and then he will wait and see what your response is. He is looking to see if you like a challenge or will get discouraged easily.
avatar

Senior Engineering Technologist

Interviewed at Bechtel Marine Propulsion

3.2
Oct 18, 2014

"I hate my job"... Its a statement the main manager of the highest paid engineers will just say and then he will wait and see what your response is. He is looking to see if you like a challenge or will get discouraged easily.

Viewing 51 - 60 interview questions

Glassdoor has 11,369 interview questions and reports from Operations engineering manager interviews. Prepare for your interview. Get hired. Love your job.