Senior Interview Questions

321,618 senior interview questions shared by candidates

Very general approach - CEO just talked and talked - shared his vision and how he was early to see what the telemedicine industry would be - then how the industry was erupting and growing. He also commented his people in place were not performing to his expectations and he had trouble to get them focused, especially with the "disruptiveness" of being a startup. No employee culture was mentioned in the CEO vision - Vision was very externally focused. My eyes were opened to the situation and leadership (lack there of) - and wow,
avatar

Senior Executive

Interviewed at MDLIVE

3.5
Oct 18, 2015

Very general approach - CEO just talked and talked - shared his vision and how he was early to see what the telemedicine industry would be - then how the industry was erupting and growing. He also commented his people in place were not performing to his expectations and he had trouble to get them focused, especially with the "disruptiveness" of being a startup. No employee culture was mentioned in the CEO vision - Vision was very externally focused. My eyes were opened to the situation and leadership (lack there of) - and wow,

2. /** * A tournament tree is a binary tree * where the parent is the minimum of the two children. * Given a tournament tree find the second minimum value in the tree. * A node in the tree will always have 2 or 0 children. * Also all leaves will have distinct and unique values. * 2 * / \ * 2 3 * / \ | \ * 4 2 5 3 * * In this given tree the answer is 3. */ class Node { Integer value; Node left, right; Node(Integer value, Node left, Node right) { this.value = value; this.left = left; this.right = right; } } class Solution { /** * This should return the second minimum * int value in the given tournament tree */ public static Integer secondMin(Node root) { } }
avatar

Senior Software Engineer

Interviewed at LinkedIn

3.8
Apr 5, 2017

2. /** * A tournament tree is a binary tree * where the parent is the minimum of the two children. * Given a tournament tree find the second minimum value in the tree. * A node in the tree will always have 2 or 0 children. * Also all leaves will have distinct and unique values. * 2 * / \ * 2 3 * / \ | \ * 4 2 5 3 * * In this given tree the answer is 3. */ class Node { Integer value; Node left, right; Node(Integer value, Node left, Node right) { this.value = value; this.left = left; this.right = right; } } class Solution { /** * This should return the second minimum * int value in the given tournament tree */ public static Integer secondMin(Node root) { } }

Viewing 261 - 270 interview questions

Glassdoor has 321,618 interview questions and reports from Senior interviews. Prepare for your interview. Get hired. Love your job.