EmilyRamos7585 EmilyRamos7585 07-02-2024 Computers and Technology contestada What is the output of the code snippet given belowString s = "12345";int i = 1;do{if (i > 1){System (s.substring(i, i + 1));}}while (i < 5);a) No outputb) No output (infinite loop)c) 12345d) 2345