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