ventalexander4199 ventalexander4199 08-02-2024 Computers and Technology contestada If ch='2', what is count at the end of the loop?int count = 0;switch(ch) { case '1': count++; break; case '2': count++; break; case '3': count++; break; default: count = 0;}A. 0B. 1C. 2D. 3E. None of the above