0
/ 10
How many times does the loop execute? That is, how many times is hello()
called?
for (int i = 0; i < 5; i++) { hello(); }
How many times does the loop execute? That is, how many times is hello()
called?
for (int i = 0; i < 5; i++) {
hello();
}
Your feedback will appear here when you check your answer.