J'ai postulé via un recruteur. J'ai passé un entretien chez Arista Networks en févr. 2022
Entretien
Had to SSH into their server and debug the coding pointer coding question which was in C++. However there was no white board given for me to visualize the problem. I was allowed to use a paper only 10 minutes before the end of the interview after which I ha solved the problem
Questions d'entretien [1]
Question 1
Challenging project that you have ever done, Tell me about yourself and debug question
J'ai postulé via la recommandation d'un employé. Le processus a pris 4 semaines. J'ai passé un entretien chez Arista Networks (Austin, TX) en sept. 2024
Entretien
I had a first-round interview where we first discussed a bit about my background and later I had to program a basic leet code problem involving pointers and linked lists
Questions d'entretien [1]
Question 1
How do you access/keep track of a previous node in a singly linked list when iterating through the list.
Interview was standard, 1st round was just a phone call to feel out the candidate. Second round I received an easy leetcode question. The environment they had you code in was a bit tricky though, I had to code through a remote session on my terminal with vim and run and debug the file with make and gdb.
J'ai postulé en ligne. J'ai passé un entretien chez Arista Networks (Vancouver, BC) en août 2022
Entretien
after applying, got a response quickly in two days.
Then a quick phone call from HR.
If you meet the basic requirements, you will receive a mail to schedule and confirm a video meeting.
Questions d'entretien [1]
Question 1
Once the meeting begin, SSH to their server and start to code using Vim.
The question to find the fibonacci series from a linked list and print.
the linkedlist is:
struct node {
char value;
struct node* next;
}