I applied online. The process took 2 weeks. I interviewed at Travelfusion (London, England) in June 2021
Interview
Hard online test
2 online interviews
First was good but they wanted you to write the answer on paper then send them the photos for a weird reason.
The second was terrible. The senior developer would not let me say more than 4 lines. Did not listen to me. Asked something else and wanted an entirely different answer. Mocked me for not knowing the answer. I just gave up midway and said "I don't know" for nearly everything.
10/10 would not work under the 2nd interviewer. The past interview reviews mention similar things, but I thought maybe it was just them. But it actually happened.
Interview questions [1]
Question 1
How to know if the program is looping by using threads?
I applied online. The process took 5 days. I interviewed at Travelfusion in June 2025
Interview
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.
I applied online. The process took 1 day. I interviewed at Travelfusion (Shanghai, Shanghai) in June 2025
Interview
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.
I applied online. The process took 5 days. I interviewed at Travelfusion in July 2024
Interview
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.
Interview questions [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.