How many times will the loop shown below be executed


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 

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: How many times will the loop shown below be executed
Reference No:- TGS0101262

Expected delivery within 24 Hours