Question: in java What is the output of the following code? 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15.

in java
What is the output of the following code? 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. public static void main(String[] args) { int n = 5; someMethodi(n); } public static void someMethod2 (int n) { if ( n +1 0) { System.out.print("M1" + " "); n -= 2; someMethod2(n); } System.out.print(n + " "); } O A. M1 Moon Moon Sun M1 Sun-1 B. M1 M1 Sun M1 Sun-1 OC. M1 Moon M1 Sun M1 Sun 0 OD. This code will not run
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
