An algorithm is shown below:
taxRate = 0.20 function calculatePrice(itemPrice) vat = itemPrice * taxRate finalPrice = itemPrice + vat return finalPrice endfunction
Identify the name of a global variable used in this algorithm.