Consider the following code segment
int count = 5;
while
(count < 100)
{
count = count 2;
}
count = count +1;
What will be the value of count as a result of executing the code segment?
A. 100
B. 101
C. 160
D. 161
E. 321