What is the output of the code snippet given below
String s = "abcde";
int i = 1;
do
{
if (i > 1)
{
System (s.substring(i, i + 1));
}
}
while (i < 5);
a) No output
b) No output (infinite loop)
c) abcde
d) bcde