I applied for this internship on RippleMatch. After application, I received an invitation to an online assessment on the same day, which required me to complete within the next 7 days.
Expérience positive
Entretien moyen
Candidature
J'ai passé un entretien chez eBay (San Jose, CA)
Entretien
It was fine they had me debug something and also write testcases. Honestly wasn't that bad after you get through the hacker rank thing they auto send you. It might not be the same for every team, but my interviewers were nice.
J'ai postulé via un recruteur. J'ai passé un entretien chez eBay en janv. 2021
Entretien
An eBay recruiter reached out to me via email, and set up a 1.5 hour sequential interview with two engineers. Both interviews were mainly technical. The interviewers asked me about stuff on my resume, asked a few questions about programming languges I knew, and then gave me a technical question. I heard back about a week later with an offer.
Questions d'entretien [1]
Question 1
Given a linked list, write a function that modifies it such that the new linked list alternates between the first and last node of the original.
Ex:
Given the list 1->2->3->4->5
Return the list 1->5->2->4->3