Case-Based Critical Thinking Questions Case 1: XYZ Solutions…

Case-Based Critical Thinking Questions Case 1: XYZ Solutions You have just started working for XYZ Solutions as a programmer. Your first assignment is to review and correct various code so that you can become familiar with the company’s programs.How many times will the message display based on the counter being initialized to 0?​intCounter = 0Do While intCounter < 5     MessageBox.Show("OK")     intCounter = intCounter + 1Loop