Answer:
Here's the pseudocode for the OutputVal function:
function OutputVal(numberA, numberB)
result = 1
for i = numberA to numberB do
result = result * i
end for
output result followed by a newline
end function
Step-by-step explanation:
This function initializes result to 1 and then multiplies it by every integer from numberA to numberB using a loop. Finally, it outputs the value of result followed by a newline.