What would you tell a stakeholder to temper their expectations about what we can deliver in the desired timeframe?
Lead Application Developer Interview Questions
15,297 lead application developer interview questions shared by candidates
Some questions on behavior which we do not expect that they will be asking like we need to answer about how to handle some situations which you never faced.
Design a database model (based on use case provided by the interviewer) Select queries (based on use case provided by interviewer on the above data model)
What experience have you had working in industrial sites?
Have you have any mechanical seals experience?
It was very straight forward and frank so there were no difficult questions to answer.
They asked "why should we hire you?" which as a person looking for a job is kind of a red flag about the interviewers and company culture.
How do you manage employees who are resistant to change?
The second round interview: Implement a binary tree with the given interface, then discuss the implementation via remote desktop and phone. /* * An interface for an sorted binary tree. * * The interface provides methods for inserting values, checking if certain values are contained and iterating over the elements. * Note: Implementing classes should provide an iterator that traverse the inserted object in the sorted order. */ public interface IBinTree<V extends Comparable<V>> extends Iterable<V> { /* * Insert an object into the binary tree. Note: The tree should be sorted, inserting the same object twice is allowed but the insert is expected to be stable. */ void insert(V obj); /* * Batch-insert multiple elements. */ void insert(Vector<V> vec); /* * Check if the object is already in the tree. Return true if it is, false otherwise. */ boolean contains(V obj); }
- Why are you interested in this position - What were your experience - Questions about the given experience - Role play in the second stage
Viewing 9601 - 9610 interview questions