J'ai postulé via une agence de recrutement. Le processus a pris 1 jour. J'ai passé un entretien chez Guidewire (San Mateo, CA) en mars 2009
Entretien
After asking my previous working experiences, the interviewer just asked one single coding problem. No any other skills has been asked. I.e., completely depends on the coding!
Coding Problem: Coding hasNext() and next() methods for a class that contains a Collection of Collections. (main collection must not be null or empty, sub collections must not be null.)
Answer: I got several hints from the interviewer. I think I didn't get the offer because I didn't finish the coding by myself! Even we discussed nicely.
public class CollectionOfCollections {
private Iterator mainIter;
private Iterator subIter;
CollectionOfCollections(Collection col) {
mainIter = col.iterator();
sunIter = mainIter.next().iterator();
}
public boolean hasNext() {
if (subIter.hasNext()) {
return true;
}
while (mainIter.hasNext()) {
subIter = mainIter.next().iterator();
if (subIter.hasNext()) {
return true;
}
}
}
public Object next() throws NoSuchElementException {
if (hasNext()) {
return subIter.next();
}
throws new NoSuchElementException();
}
}
Questions d'entretien [1]
Question 1
Coding hasNext() and next() methods for a class that contains a Collection of Collections. (main collection must not be null or empty, sub collections must not be null.)
J'ai passé un entretien chez Guidewire (Bengaluru)
Entretien
Guidewire Codility tests evaluate coding skills, problem solving, and clean code practices.To solve algorithmic and real world problems, demonstrating efficiency, clarity, and structured thinking under time constraints.The iniital qualification round.
J'ai postulé en personne. Le processus a pris 3 semaines. J'ai passé un entretien chez Guidewire (Mississauga, ON) en oct. 2024
Entretien
The interview took place in 4 rounds.
The first one was a general conversation with HR.
The second was a technical round, during which pair programming was introduced, and the interviewer and I solved a problem together.
The third was an in-person day at the office, where I was assigned to two different teams and we pair-programmed on some of their live issues.
The fourth one was a communication with their Senior VP which was also a bit technical.
Questions d'entretien [1]
Question 1
How do Kubernetes and Docker work on the OS level?
J'ai postulé en ligne. Le processus a pris 3 semaines. J'ai passé un entretien chez Guidewire (Bengaluru) en juil. 2024
Entretien
There are 4 rounds before the HR, including techno managerial. First was was basic programming and ds, second was on details system design like chat system. Third was coding set of questions in set time and last techno managerial