J'ai postulé en ligne. Le processus a pris 5 jours. J'ai passé un entretien chez Travelfusion en juin 2025
Entretien
The HR reaches out via an email asking you questions about your location & your coding level. Afterwards, they give you an online coding test and they ask you to complete it. Overall, if you haven't studied data structures & leet code it is going to hard.
J'ai postulé en ligne. Le processus a pris 1 jour. J'ai passé un entretien chez Travelfusion (Shanghai, Shanghai) en juin 2025
Entretien
First take part in paper test for java and then do the exam on the computer and then interview with technology interviewer for the paper test and computer test and then interview with the hr interviewer and finally chat with the director to take up a comprehensive interview and then over the full interview.
J'ai postulé en ligne. Le processus a pris 5 jours. J'ai passé un entretien chez Travelfusion en juil. 2024
Entretien
Online programming test with 2 questions testing algorithmic knowledge. The test was performed through an automated system called testdome, which monitors you during the test (screensharing and camera), generally a positive experience. Each question has a time limit of 30 minutes to complete, and it also has an embedded solution tester to verify the correct answer.
Questions d'entretien [2]
Question 1
The first question was about a given number of items, and 2 types of packages, first one could carry 5 items and the second only 1 and the question was: What is the minimal number of packages required to carry all the items with given number of packages? So you actually had 3 parameters, the number of items, the number of large packages and small packages and you should have returned the minimal packages that could carry the items. If the packages were not enough to carry the items the function should return -1. There was a static function ready to populate.
The second question was about the height of a binary tree. There was a Node class given with 2 Node children left and right, and a simple binary tree with 4 members including the root.