Ask Question

5.9 How many times will the following code segment display the message box? Dim intCount As Integer = 0 Do While intCount < 10 Messag

+3
Answers (1)
  1. 30 July, 14:03
    0
    10 times.

    Explanation:

    The code segment given in the question will display the message box 10 times because the variable intCount that is used for the running condition of the loop is initialized with 0 and it should be less than 10 after increment.

    If the value of intCount become more than or equal to 10 the loop will stop it's execution.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “5.9 How many times will the following code segment display the message box? Dim intCount As Integer = 0 Do While intCount < 10 Messag ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers