Answer:
The following statement are:
eurasiaSales = Arithmetic.add(euroSales, asiaSales);
Explanation:
Firstly we define the class "Arithmetic", then set the static type function "add()" and pass two integer type "euroSales" and "asiaSales" which returns their sum after that set another integer type variable "eurasiaSales" which stores an output of the function "add()".
The following statement are true.