Find the element with the largest order by computing the order of each element. The order of 0 is 1 because the sum of only one 0 is 0. You need 15 1s to add to 0, so 1 is certainly a good candidate for the element with the largest order.
Compute the sequence for 2. It is 2, 4, 6, 8, 10 , 12, 14, 1, 3, 5, 7, 9, 11, 13, 0. The order for 2 is also 15. For 3, the sequence is 3, 6, 9, 12, 0. The order of 3 is 5.
Look at the sequence for 4. It is 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 0. The order of 4 is also 15. There is no longest order. At least 1, 2 and 4 have order 15, which is the largest possible order.