daionagreene1435 daionagreene1435 04-03-2024 Computers and Technology contestada What would this method call output? public int myMethod(int num) { while(num / 10 >= 10) { num /= 10; } return num; } myMethod(830)a) 83 b) 830 c) 8