How many times will the loop shown below be executed?
Dim intQuantityBold As Integer
Dim decTax As Decimal
intQuantityBold = 1
Do Until intQuantityBold = 5
decTax = intQuantityBold * 0.07
lstDisplay.Items.Add("Tax Amount: " & decTax.ToString())
intQuantitySold += 1
Loop