carlsms7193 carlsms7193 07-04-2020 Computers and Technology contestada The procedure call mystery(38) will yield which output? __________ a) 0 12 b) 12 0 c) 1 1 0 2 d) 1 1 1 1 e) 2 0 1 1 public void mystery (int n) { if (n>2) mystery (n % 3); System.out.print( (n / 3) + " " ); }