Consider the following code segment.

int a = 1;

String result = "";

while (a < 20)

{

result += a;

a += 5;

}

System.out.println(result);

What, if anything, is printed as a result of executing the code segment?


21


161116


161161


16111621


Nothing is printing because of an infinite loop.