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)
Software Development Engineer In Test Interview Questions
6,459 software development engineer in test interview questions shared by candidates
functional test questions and basic automation scenarios
What do you know about Regex, they emphasize regex a lot.
They asked a lot of ML fundamental Questions and weird testing analogies. No DSA or anything else.
1. For loops 2. Sorting 3. Array 4. Xpath
arrays question to find equilibrium point
Explain the OOP concept and give practical examples
FizzBuzz, Inner join vs Left Join, etc.
Print out a linear array of a multiplication table. So if you're given 3, it should print out [1, 2, 3, 2, 4, 6, 3, 6, 9]
what was your personal experience like
Viewing 5631 - 5640 interview questions