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