✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
How many stars are displayed at the end of the execution of the following instruction lines?
n <- 5
For i <- 1 to n Do
j <- 1
While j < i Do
Write("* ")
j <- j + 1
End While
Write("\NL")
End For