✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the value of the variable count at the end of execution of the following sequence of instructions ?
count <- 0
For i <- 2 to 5 Do
For j <- 1 to 2 Do
If i % j = 0 Then
count <- count + 1
End If
End For
End For