The interview covered the following areas: -Java/JavaScript inheritance questions. -Questions about my QA background, skills, and qualifications. -Scenario-based problem-solving questions. -Overcoming ambiguity in tests. -API error handling and conditional update implementation. -Implementing a palindrome solution in TypeScript.
Senior Development Engineer Interview Questions
1,591 senior development engineer interview questions shared by candidates
PS: Build statistic distribution of numbers in 10 buckets and print out count of numbers in each bucket.
there was no such question
What are your accomplishments?
Two concentric tubes (steel and aluminum) touching at their ends. An object is placed on top of them. How is the load distributed? If you heat up the tubes by 100 degrees, how would the load profile change?
Describe an experience where you had to deal with an unpleasant person/situation. How did you handle it?
Nothing much was basic xpath questions
Explain a time you had conflict in the workplace.
During the video interview, there were several difficult technical coding questions and problems. After this it got easier.
L2 round questions - 1) Find error in below code - class Base { final public void show() { System.out.println("Base:test() call"); } } class Derived extends Base { public void show() { System.out.println("Derived:test() call"); } } class Main { public static void main(String[] args) { Base b = new Derived(); b.show(); } } 2) Write code for equivalent star pattern in java 3) Write code to identify all the numbers in this array whose sum is also present in the array sample array 1 = [-1, 3, -2, 1, -4, 0, 5, 2, -3] sample array 2 = [21, 13, 47, 61, 34, 40, 55, 71, 87] example = -1 + 3 = 2 (also present in array so will be printed) -4 + 0 = -4 (not present in array so will be excluded)
Viewing 1401 - 1410 interview questions