Answer :
Assignment statements are used to assign values to variables.
The statement that assigns finalValue with the multiplication of userNum1 and userNum2 is: finalValue = userNum1 * userNum2
How to write the assignment statement
From the question, the variables to be multiplied are
userNum1 and userNum2
The product is to be assigned to finalValue
Hence, the statement that assigns finalValue with the multiplication of userNum1 and userNum2 is: finalValue = userNum1 * userNum2
Read more about assignment statements at:
https://brainly.com/question/16397886