Me postulé en línea. El proceso tomó 2 semanas. Acudí a una entrevista en Align Technology en jul 2020
Entrevista
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.
Preguntas de entrevista [1]
Pregunta 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();
}
}
}