I hereby swear and affirm that this work is solely my own, a…

I hereby swear and affirm that this work is solely my own, and not the work or the derivative of the work of someone else. I also hearby swear that all of my responses to these questions are solely from what I have learned via my memory and that I will not use any outside source (no  notes, web searches, books, articles, applications, etc.) to aid in my responses. [Agree]

What is the output of the following? public class Numbers{ p…

What is the output of the following? public class Numbers{ public void calculate{ int number1 = 5; int number2 = 10; int number3 = 8; switch(number3, number2, number1); } public void switch(int number1, int number2, int number3){ System.out.println(number1 + ” ” + number2 + ” ” + number3); }} Output ___________