J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez Align Technology en juill. 2020
Entretien
Process begun by a short phone interview which I was asked about basic concepts about automation framework.
After passing the phone interview we scedhuled a 1:1 Zoom interview there I was asked about multithreading and about basic and advanced concpets in Java language.
Then I had another interview with HR and she asked me to give her recommenders, which I delivered the next day.
They did not contact me for a week (I asked them in mail what is my application status) then after a week they called me and told me that the poistion was changed and my application is not needed anymore which was very strange to me after the process I have passed.
Questions d'entretien [1]
Question 1
What would happen here in terms of inheritance :
public class Manipulation {
public void add() {
}
public void add2() {
add();
}
public class Addition extends Manipulation{
public void add() {
}
public static void main(String[] args) {
Manipulation additionManipulation = new Addition();
}
}
}