✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int i = 0;
while (i <5) {
if (i == 0)
throw new NullPointerException ( "first");
if (i == 2)
throw new NumberFormatException ( "second");
i ++;
}