nacirfabeauty7418 nacirfabeauty7418 02-06-2022 Computers and Technology contestada Consider the following method: public int mystery(int n) { if(n > 6) { return 1 mystery(n - 1); } return n % 3; } What is the value of mystery(10)