72,702 views
19 votes
19 votes
Java 1

Question 18
What is the value of alpha at the end of the loop?

alpha = 1;
loopCount = 1;
while (loopCount <= 3)
{
alpha = alpha + 10;
loopCount++;
}

a. 10
b. 21
c. 31
d. 1
e. 3

User Kii
by
3.1k points

1 Answer

17 votes
17 votes

Answer:

c .31

Explanation:

i hope ...

Java 1 Question 18 What is the value of alpha at the end of the loop? alpha = 1; loopCount-example-1
User Ryota
by
2.6k points